HomeSort by relevance Sort by last modified time
    Searched refs:tp (Results 1 - 25 of 606) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/tools/cscope-fast/
help.c 47 char **ep, *s, **tp, *text[MAXHELP]; local
50 tp = text;
53 *tp++ = "Point with the mouse and click button 1 to "
55 *tp++ = "type the pattern to search for, and then "
57 *tp++ = "and last 2 input fields, the pattern can be "
59 *tp++ = "If the search is successful, you can edit "
61 *tp++ = "by pointing with the mouse and clicking "
63 *tp++ = "\nYou can either use the button 2 menu or "
66 *tp++ = "Press the TAB key repeatedly to move to the "
68 *tp++ = "pattern to search for, and then press the
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/netinet/
tcp_seq.h 32 #define tcp_rcvseqinit(tp) \
33 (tp)->rcv_adv = (tp)->rcv_nxt = (tp)->irs + 1
35 #define tcp_sendseqinit(tp) \
36 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
37 (tp)->is
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
settimeofday.c 46 settimeofday(struct timeval *tp, void *tzp)
50 if (tp == NULL)
53 if (tp->tv_sec < 0 || tp->tv_usec < 0 || tp->tv_usec >= MICROSEC) {
58 t = (time_t)tp->tv_sec;
59 if (tp->tv_usec >= (MICROSEC/2))
ftime.c 51 ftime(struct timeb *tp)
59 tp->time = t.tv_sec;
60 tp->millitm = t.tv_usec / 1000;
61 tp->timezone = timezone / 60;
62 tp->dstflag = daylight;
  /onnv/onnv-gate/usr/src/ucblib/libucb/port/gen/
ftime.c 52 ftime(struct timeb *tp)
59 tp->time = t.tv_sec;
60 tp->millitm = t.tv_usec / 1000;
61 tp->timezone = (short)tz.tz_minuteswest;
62 tp->dstflag = (short)tz.tz_dsttime;
  /onnv/onnv-gate/usr/src/cmd/fm/fmd/common/
fmd_thread.c 41 fmd_thread_t *tp = fmd_alloc(sizeof (fmd_thread_t), FMD_SLEEP); local
43 tp->thr_mod = mp;
44 tp->thr_tid = tid;
45 tp->thr_func = NULL;
46 tp->thr_arg = NULL;
47 tp->thr_trdata = fmd_trace_create();
48 tp->thr_trfunc = (fmd_tracebuf_f *)fmd.d_thr_trace;
49 tp->thr_errdepth = 0;
52 fmd_list_append(&fmd.d_thr_list, tp);
55 return (tp);
61 fmd_thread_t *tp = arg; local
76 fmd_thread_t *tp = fmd_alloc(sizeof (fmd_thread_t), FMD_SLEEP); local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/zic/
scheck.c 16 register char *tp; local
28 tp = fbuf;
29 while ((*tp++ = c = *fp++) != '\0') {
33 *tp++ = *fp++;
36 *tp++ = '*';
40 *tp++ = *fp++;
42 *tp++ = *fp++;
44 do *tp++ = *fp++;
46 if ((*tp++ = *fp++) == '\0')
49 *(tp - 1) = '%'
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/common/bltins/
alarm.c 59 register struct tevent *tp = (struct tevent*)list; local
60 if(!tp || item->milli < tp->milli)
62 item->next = tp;
67 while(tp->next && item->milli > tp->next->milli)
68 tp = tp->next;
69 item->next = tp->next;
70 tp->next = item
82 register struct tevent *tp = (struct tevent*)list; local
99 register struct tevent *tp = (struct tevent*)list; local
119 register struct tevent *tp = (struct tevent*)handle; local
131 register struct tevent *tp, *tpnext; local
165 register struct tevent *tp = (struct tevent*)fp; local
185 register struct tevent *tp; local
237 register struct tevent *tp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/fm/topo/libtopo/common/
topo_tree.c 70 set_create_error(topo_hdl_t *thp, ttree_t *tp, int err)
72 if (tp != NULL)
73 topo_tree_destroy(tp);
84 ttree_t *tp; local
87 if ((tp = topo_mod_zalloc(mod, sizeof (ttree_t))) == NULL)
90 tp->tt_mod = mod;
92 if ((tp->tt_scheme = topo_mod_strdup(mod, scheme)) == NULL)
93 return (set_create_error(thp, tp, ETOPO_NOMEM));
98 if ((tp->tt_walk = topo_mod_zalloc(mod, sizeof (topo_walk_t))) == NULL)
99 return (set_create_error(thp, tp, ETOPO_NOMEM))
206 ttree_t *tp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/os/
copyops.c 41 install_copyops(kthread_id_t tp, copyops_t *cp)
43 ASSERT(tp->t_copyops == NULL);
44 tp->t_copyops = cp;
48 remove_copyops(kthread_id_t tp)
50 ASSERT(tp->t_copyops != NULL);
51 tp->t_copyops = NULL;
55 copyops_installed(kthread_id_t tp)
57 return (tp->t_copyops != NULL);
sleepq.c 97 * the t_link pointer that points to tp.
100 sleepq_unlink(kthread_t **tpp, kthread_t *tp)
102 ASSERT(*tpp == tp);
103 ASSERT(tp->t_sleepq != NULL);
106 *tpp = tp->t_link;
112 if (tp->t_priforw != tp) {
113 tp->t_priback->t_priforw = tp->t_priforw;
114 tp->t_priforw->t_priback = tp->t_priback
221 kthread_t *tp; local
252 kthread_t *tp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/nisplus/
nisplus_impl.c 53 char *tp; local
59 for (op = &container_name[sizeof (TMPLT_PFX) - 1], tp = bufp;
60 *op != '\0'; op++, tp++) {
62 *tp = '.';
64 *tp = *op;
78 char *tp; local
85 for (tp = &bufp[sizeof (TMPLT_PFX)]; *tp != '\0'; tp++) {
86 if (*tp == '.'
    [all...]
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/bsd/
gettimeofday.c 19 isc__gettimeofday(struct timeval *tp, struct timezone *tzp) {
22 res = gettimeofday(tp, tzp);
25 if (tp == NULL)
27 if (tp->tv_usec < 0) {
29 tp->tv_usec += MILLION;
30 tp->tv_sec--;
31 } while (tp->tv_usec < 0);
33 } else if (tp->tv_usec > MILLION) {
35 tp->tv_usec -= MILLION;
36 tp->tv_sec++
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsec/common/
aclmode.c 40 aclent_t *tp; local
52 for (tp = aclbufp; nentries--; tp++) {
53 if (tp->a_type == USER_OBJ) {
54 mode = tp->a_perm;
60 if (tp->a_type == GROUP_OBJ) {
61 grpmode = tp->a_perm;
66 if (tp->a_type == CLASS_OBJ) {
68 mask = tp->a_perm;
74 if (tp->a_type == OTHER_OBJ)
91 aclent_t *tp; local
    [all...]
aclsort.c 82 aclent_t *tp; local
100 for (tp = aclbufp, i = 0; i < nentries; tp++, i++) {
102 if (tp->a_type == map_to_sort[k].entry_type) {
103 tp->a_type = map_to_sort[k].sort_order;
113 for (tp = aclbufp, i = 0; i < nentries; tp++, i++) {
115 if (tp->a_type == map_to_sort[k].sort_order) {
116 tp->a_type = map_to_sort[k].entry_type;
142 for (tp = aclbufp; tp->a_type != OTHER_OBJ; tp++)
161 aclent_t *tp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/string/
base64.c 54 register unsigned char* tp; local
71 if (tp = (unsigned char*)tb)
73 te = tp + tz - B64_EC + 1;
82 tp = tmp;
83 te = tp + sizeof(tmp) - B64_EC + 1;
88 tc = tp + B64_EC * B64_CHUNK;
93 if (tp >= te)
98 *tn = tp;
99 n = tp - (unsigned char*)tb + 1;
100 tp = tmp
155 register unsigned char* tp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/disp/
thread_intr.c 52 kthread_t *tp; local
54 tp = thread_create(NULL, 0,
66 THREAD_FREEINTR(tp, cp);
72 tp->t_cred = NULL;
73 tp->t_flag |= T_INTR_THREAD;
74 tp->t_cpu = cp;
75 tp->t_bound_cpu = cp;
76 tp->t_disp_queue = cp->cpu_disp;
77 tp->t_affinitycnt = 1;
78 tp->t_preempt = 1
    [all...]
  /onnv/onnv-gate/usr/src/ucblib/libucb/port/sys/
gettimeofday.c 57 gettimeofday(struct timeval *tp, void *tzp)
59 if (tp == NULL)
62 return (_gettimeofday(tp));
72 settimeofday(struct timeval *tp, void *tzp)
76 if (tp == NULL)
79 t = (time_t) tp->tv_sec;
80 if (tp->tv_usec >= 500000)
  /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/nisplus0/
nisplus_impl.c 48 char *tp, *wp, *sp = NULL; local
50 if ((tp = strdup(container)) == NULL)
53 for (wp = strtok_r(tp, "_", &sp), i = 0; wp != NULL && i < 4;
58 free(tp);
69 char *tp; local
71 for (tp = network; *tp != '\0'; tp++) {
72 if (*tp == from)
73 *tp = to
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/
tg3.c 43 /* (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ? \
143 static void tg3_disable_ints(struct tg3 *tp)
146 (tp->misc_host_ctrl | MISC_HOST_CTRL_MASK_PCI_INT));
150 static void tg3_switch_clocks(struct tg3 *tp)
158 tp->pci_clock_ctrl = clock_ctrl;
160 if ((GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5705) &&
172 static int tg3_readphy(struct tg3 *tp, int reg, uint32_t *val)
177 tw32_carefully(MAC_MI_MODE, tp->mi_mode & ~MAC_MI_MODE_AUTO_POLL);
207 tw32_carefully(MAC_MI_MODE, tp->mi_mode);
212 static int tg3_writephy(struct tg3 *tp, int reg, uint32_t val
2998 struct tg3 *tp = &tg3; local
3068 struct tg3 *tp; local
3120 struct tg3 *tp = &tg3; local
3159 struct tg3 *tp = &tg3; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/compat/4.1/
ftime.c 49 ftime(struct timeb *tp)
58 tp->time = t.tv_sec;
59 tp->millitm = t.tv_usec / 1000;
60 tp->timezone = _timezone / 60;
61 tp->dstflag = _daylight;
  /onnv/onnv-gate/usr/src/cmd/acct/
acctmerg.c 80 struct tacct *tp; local
132 while ((tp = getleast()) != NULL) /* get least uid of all files, */
133 sumcurr(tp); /* sum all entries for that uid, */
147 struct tacct *tp, *least; local
150 for (tp = tb; tp <= &tb[nfile]; tp++) {
151 if (tp->ta_name[0] == '\0')
154 tp->ta_uid < least->ta_uid ||
155 ((tp->ta_uid == least->ta_uid) &
220 struct tacct *tp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/cpr/
cpr_uthread.c 105 kthread_id_t tp; local
112 tp = curthread->t_next;
115 p = ttoproc(tp);
130 thread_lock(tp); /* needed to check CPR_ISTOPPED */
132 if (tp->t_state == TS_STOPPED) {
137 if (tp->t_schedflag & TS_RESUME)
138 tp->t_schedflag &= ~TS_RESUME;
141 tp->t_proc_flag |= TP_CHKPT;
143 thread_unlock(tp);
147 thread_lock(tp);
175 kthread_id_t tp; local
227 kthread_id_t tp; local
315 kthread_id_t tp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libinetutil/common/
ifspec.c 49 char *sp = strchr(bp, ':'), *tp; local
61 for (tp = sp; tp < ep && isdigit(*tp); tp++)
63 if (tp != ep) {
83 char *tp; local
90 for (tp = ep; tp >= bp && isdigit(*tp); tp--
112 char *lp, *tp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/scsi/libses/common/
ses_enclosure.c 31 enc_parse_td(ses2_td_hdr_impl_t *tip, const char *tp, nvlist_t *nvl)
35 if (tp != NULL)
37 tp, tip->sthi_text_len);
43 enc_eid(const ses2_ed_impl_t *tp, nvlist_t *nvl, const char *name)
47 SES_NV_ADD(uint64, nverr, nvl, name, tp->st_hdr.sehi_subenclosure_id);
53 enc_espid(const ses2_ed_impl_t *tp, nvlist_t *nvl, const char *name)
57 SES_NV_ADD(uint64, nverr, nvl, name, tp->st_hdr.sehi_rel_esp_id);
63 enc_nesp(const ses2_ed_impl_t *tp, nvlist_t *nvl, const char *name)
67 SES_NV_ADD(uint64, nverr, nvl, name, tp->st_hdr.sehi_n_esps);
73 enc_lid(const ses2_ed_impl_t *tp, nvlist_t *nvl, const char *name
208 ses_target_t *tp; local
245 ses_target_t *tp; local
    [all...]

Completed in 840 milliseconds

1 2 3 4 5 6 7 8 91011>>