HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 1 - 25 of 71) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/libc/port/unwind/
unwind.c 72 ulwp_t *self = curthread; local
77 if (self->ul_ex_unwind == NULL &&
78 (self->ul_ex_unwind = dlsym(RTLD_PROBE, "_ex_unwind")) == NULL)
79 self->ul_ex_unwind = (void *)-1;
81 if (self->ul_ex_unwind == (void *)-1)
84 fptr = (void (*)())self->ul_ex_unwind;
91 if ((head = self->ul_clnup_hdr) != NULL && fp == head->fp) {
92 self->ul_clnup_hdr = head->next;
98 if (fptr != NULL && self->ul_unwind) {
  /onnv/onnv-gate/usr/src/lib/libc/amd64/unwind/
thrp_unwind.c 89 ulwp_t *self = curthread; local
90 __cleanup_t **headp = &self->ul_clnup_hdr;
95 if (self->ul_ex_unwind == NULL &&
96 (self->ul_ex_unwind = dlsym(RTLD_PROBE, "_ex_unwind")) == NULL)
97 self->ul_ex_unwind = (void *)-1;
99 if (self->ul_ex_unwind == (void *)-1)
102 fptr = (void (*)())self->ul_ex_unwind;
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
atfork.c 52 ulwp_t *self = curthread; local
53 uberdata_t *udp = self->ul_uberdata;
59 if (self->ul_fork) {
stack.c 49 ulwp_t *self = curthread; local
59 sigoff(self);
60 self->ul_ustack = *sp;
61 sigon(self);
atexit.c 62 * If they call back to us, we are self-consistent and everything
93 * Be careful about dereferencing self->ul_uberdata->atexit_root.
98 ulwp_t *self; local
105 if ((self = __curthread()) == NULL)
108 arp = &self->ul_uberdata->atexit_root;
114 if (self != NULL)
200 ulwp_t *self = curthread; local
201 uberdata_t *udp = self->ul_uberdata;
221 if (self->ul_fork) {
  /onnv/onnv-gate/usr/src/lib/libc/amd64/threads/
machdep.c 105 _thrp_setup(ulwp_t *self)
107 self->ul_ustack.ss_sp = (void *)(self->ul_stktop - self->ul_stksiz);
108 self->ul_ustack.ss_size = self->ul_stksiz;
109 self->ul_ustack.ss_flags = 0;
110 (void) setustack(&self->ul_ustack);
112 update_sched(self);
116 sigon(self);
178 ulwp_t *self = curthread; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/sparc/threads/
machdep.c 95 _thrp_setup(ulwp_t *self)
99 if (self->ul_fpuenv.fpu_en)
100 _setfsr(&self->ul_fpuenv.fsr);
102 self->ul_ustack.ss_sp = (void *)(self->ul_stktop - self->ul_stksiz);
103 self->ul_ustack.ss_size = self->ul_stksiz;
104 self->ul_ustack.ss_flags = 0;
105 (void) setustack(&self->ul_ustack)
185 ulwp_t *self = curthread; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/disp/
cmt_policy.c 67 int self)
77 if (self && bitset_in_set(&here->cmt_cpus_actv_set, CPU->cpu_seqid))
123 int self = 0; local
138 self = 1;
158 nsiblings = GROUP_SIZE(siblings); /* self inclusive */
196 if (cmt_should_migrate(pg, tpg, pg->cmt_policy, self))
  /onnv/onnv-gate/usr/src/lib/libc/port/threads/
cancel.c 40 ulwp_t *self = curthread; local
41 uberdata_t *udp = self->ul_uberdata;
53 } else if (ulwp == self) {
55 * Unlock self before cancelling.
57 ulwp_unlock(self, udp);
58 self->ul_nocancel = 0; /* cancellation is now possible */
59 if (self->ul_sigdefer == 0)
62 self->ul_cancel_pending = 1;
63 set_cancel_pending_flag(self, 0);
96 ulwp_t *self = curthread local
153 ulwp_t *self = curthread; local
207 ulwp_t *self = curthread; local
221 ulwp_t *self = curthread; local
239 ulwp_t *self = curthread; local
257 ulwp_t *self = curthread; local
276 ulwp_t *self = curthread; local
295 ulwp_t *self = curthread; local
398 ulwp_t *self = curthread; local
    [all...]
sema.c 86 ulwp_t *self = curthread; local
87 uberdata_t *udp = self->ul_uberdata;
101 self->ul_sp = stkptr();
102 self->ul_wchan = lsp;
103 if (__td_event_report(self, TD_SLEEP, udp)) {
104 self->ul_td_evbuf.eventnum = TD_SLEEP;
105 self->ul_td_evbuf.eventdata = lsp;
118 set_parking_flag(self, 1);
119 if (self->ul_cursig != 0 ||
120 (self->ul_cancelable && self->ul_cancel_pending)
233 ulwp_t *self = curthread; local
300 ulwp_t *self = curthread; local
    [all...]
alloc.c 182 ulwp_t *self; local
206 if ((self = __curthread()) == NULL)
209 udp = self->ul_uberdata;
218 if (self != NULL)
242 if (self != NULL)
257 if (self != NULL)
272 ulwp_t *self; local
302 if ((self = __curthread()) == NULL)
305 bp = &self->ul_uberdata->bucket[bucketnum];
310 if (self != NULL
    [all...]
pthread.c 93 ulwp_t *self = curthread; local
100 update_sched(self);
117 (ap->policy != self->ul_policy ||
118 ap->prio != (self->ul_epri? self->ul_epri : self->ul_pri)))
140 ulwp_unlock(ulwp, self->ul_uberdata);
tdb_agent.c 229 ulwp_t *self = curthread; local
230 uberdata_t *udp = self->ul_uberdata;
241 if (!self->ul_primarymap)
258 if (self->ul_sync_obj_reg) /* recursive call */
260 self->ul_sync_obj_reg = 1;
347 self->ul_sync_obj_reg = 0;
tls.c 126 * total size we are given and that they are self-consistent.
218 ulwp_t *self = curthread; local
219 tls_metadata_t *tlsm = &self->ul_uberdata->tls_metadata;
231 sigoff(self);
233 if ((moduleid = tls_index->ti_moduleid) < self->ul_ntlsent)
234 tlsent = self->ul_tlsent;
238 if (self->ul_tlsent != NULL) {
239 (void) memcpy(tlsent, self->ul_tlsent,
240 self->ul_ntlsent * sizeof (tls_t));
241 lfree(self->ul_tlsent
299 ulwp_t *self = curthread; local
319 ulwp_t *self = curthread; local
374 ulwp_t *self = curthread; local
    [all...]
tsd.c 269 ulwp_t *self = curthread; local
270 tsd_metadata_t *tsdm = &self->ul_uberdata->tsd_metadata;
296 nkeys = ((stsd = self->ul_stsd) != NULL)? stsd->tsd_nalloc : 8;
316 self->ul_stsd = ntsd;
326 ulwp_t *self = curthread; local
348 enter_critical(self);
350 exit_critical(self);
388 ulwp_t *self = curthread; local
389 tsd_metadata_t *tsdm = &self->ul_uberdata->tsd_metadata;
404 (val = self->ul_ftsd[key]) != NULL)
447 ulwp_t *self = curthread; local
    [all...]
assfail.c 59 ulwp_t *self; local
66 if ((self = __curthread()) != NULL) {
67 panic_thread = self;
68 lwpid = self->ul_lwpid;
96 ulwp_t *self; local
99 if ((self = __curthread()) != NULL)
100 enter_critical(self);
165 ulwp_t *self; local
176 if ((self = __curthread()) != NULL) {
177 if (assert_thread == self)
256 ulwp_t *self; local
343 ulwp_t *self; local
392 ulwp_t *self; local
    [all...]
sigaction.c 68 ulwp_t *self = curthread; local
69 uberdata_t *udp = self->ul_uberdata;
81 set_parking_flag(self, 0);
83 if (__td_event_report(self, TD_CATCHSIG, udp)) {
84 self->ul_td_evbuf.eventnum = TD_CATCHSIG;
85 self->ul_td_evbuf.eventdata = (void *)(intptr_t)sig;
90 * Get a self-consistent set of flags, handler, and mask
110 if (self->ul_vfork ||
133 * signal mask for sigsuspend() or pollsys() (self->ul_tmpmask) but
137 * level equals self->ul_sigmask (maskset for sigsuspend() / pollsys())
236 ulwp_t *self = curthread; local
286 ulwp_t *self = curthread; local
349 ulwp_t *self = curthread; local
451 ulwp_t *self = curthread; local
508 ulwp_t *self = curthread; local
580 ulwp_t *self = curthread; local
704 ulwp_t *self = curthread; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/i386/threads/
machdep.c 120 * to pass down self pointer and set %gs selector
149 _thrp_setup(ulwp_t *self)
151 self->ul_ustack.ss_sp = (void *)(self->ul_stktop - self->ul_stksiz);
152 self->ul_ustack.ss_size = self->ul_stksiz;
153 self->ul_ustack.ss_flags = 0;
154 (void) setustack(&self->ul_ustack);
156 update_sched(self);
219 ulwp_t *self = curthread; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ssh/include/
session.h 43 int self; member in struct:Session
  /onnv/onnv-gate/usr/src/cmd/hotplugd/
hotplugd_info.c 179 hp_node_t self, branch; local
191 if ((self = new_device_node(parent, dev)) == NULL)
199 if ((rv = copy_hotplug(self, dev, NULL, flags,
200 &self->hp_child)) != 0) {
201 free(self);
204 *rootp = self;
216 if ((rv = copy_devices(self, child, flags, &branch)) != 0) {
218 free(self);
224 self->hp_child = children.head;
227 *rootp = self;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/write/
write.c 90 static struct utmpx self; local
91 char ownname[sizeof (self.ut_user) + 1];
92 static char rterminal[sizeof ("/dev/") + sizeof (self.ut_line)] =
176 for (self.ut_pid = 0, count = 0; (ubuf = getutxent()) != NULL; ) {
183 sizeof (ubuf->ut_line)) == 0) self = *ubuf;
271 if (self.ut_pid == 0) {
280 (void) strlcpy(&ownname[0], self.ut_user,
281 sizeof (self.ut_user));
311 else if (self.ut_pid == 0) {
324 strncpy(&ownname[0], self.ut_user, sizeof (self.ut_user))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsldap/common/
ns_sasl.c 78 "for self credential mode");
83 "Metaslot for self credential "
99 * 1 use self/gssapi connection only
121 * NS_LDAP_SELF_GSSAPI_CONFIG_NONE: No credential level self and
124 * NS_LDAP_SELF_GSSAPI_CONFIG_ONLY: Only credential level self and
128 * configured, including self.
132 * __s_api_crosscheck makes sure self and sasl/GSSAPI pair up if they do
146 int self = 0, other_level = 0, gssapi = 0, other_method = 0; local
206 self++;
217 if (self > 0 && gssapi > 0)
    [all...]
  /onnv/onnv-gate/usr/src/lib/mms/mms/common/
mms_client.c 1449 int self = 1; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/1394/
s1394_misc.c 218 * sets up the HAL structure to indicate a self-initiated bus reset and
582 dev_info_t *self; local
588 self = hal->halinfo.dip;
599 return (ndi_devctl_ioctl(self, cmd, arg, mode, 0));
  /onnv/onnv-gate/usr/src/lib/libast/common/sfio/
vthread.h 144 { _vtself_t self; /* self-handle */ member in struct:_vthread_s

Completed in 2220 milliseconds

1 2 3