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

1 2 3 4 5 6 7

  /netvirt/usr/src/lib/libxcurses/src/libc/xcurses/
mknames.awk 58 function tail(file) { function
94 tail("boolname.c");
95 tail("boolcode.c");
96 tail("boolfnam.c");
97 tail("numname.c");
98 tail("numcode.c");
99 tail("numfnam.c");
100 tail("strname.c");
101 tail("strcode.c");
102 tail("strfnam.c")
    [all...]
  /netvirt/usr/src/lib/libxcurses2/src/libc/xcurses/
mknames.awk 59 function tail(file) { function
102 tail("boolname.c");
103 tail("boolcode.c");
104 tail("boolfnam.c");
105 tail("numname.c");
106 tail("numcode.c");
107 tail("numfnam.c");
108 tail("strname.c");
109 tail("strcode.c");
110 tail("strfnam.c")
    [all...]
  /netvirt/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_adsp.c 123 char *tail = &buf[sizeof (buf)]; local
126 p += snprintf(p, tail-p, "AckReq");
129 p += snprintf(p, tail-p, p == buf ? "EOM" : " EOM");
133 p += snprintf(p, tail-p, p == buf ? "Att" : " Att");
137 (void) snprintf(p, tail-p, "%s%s", p == buf ? "" : " ",
snoop_atp.c 102 char *tail = &buf[sizeof (buf)]; local
106 p += snprintf(p, tail-p, "TReq");
110 p += snprintf(p, tail-p, "TResp");
113 p += snprintf(p, tail-p, "TRel");
117 p += snprintf(p, tail-p, ci & ATP_FLG_XO ? " XO" : " ALO");
120 p += snprintf(p, tail-p, " EOM");
123 p += snprintf(p, tail-p, " STS");
126 (void) snprintf(p, tail-p, " %s", to);
snoop_zip.c 51 uint8_t *tail = (uint8_t *)zip + len; local
72 if ((p+6 > tail) || (p+7+p[6] > tail))
110 if (p+2 > tail)
126 if (p+2 > tail)
130 if (p+1 > tail || (&p[1] + p[0]) > tail)
141 if (p+1 > tail || (&p[1] + p[0]) > tail)
148 if (p+5 > tail)
269 char *tail = &buf[sizeof (buf)]; local
290 char *tail = &buf[sizeof (buf)]; local
313 uint8_t *tail = (uint8_t *)(atp+1) + len; local
    [all...]
  /netvirt/usr/src/tools/cscope-fast/
history.c 42 HISTORY *head, *tail, *current; variable
51 if (tail) {
52 tail->next = h;
54 h->previous = tail;
55 tail = h;
57 head = tail = h;
75 } else if (tail)
76 return (current = tail);
95 /* reset current to tail */
  /netvirt/usr/src/ucbcmd/ln/
ln.c 79 char *tail; local
90 tail = strrchr(from, '/');
91 if (tail == 0)
92 tail = from;
94 tail++;
95 if (strlen(to) + strlen(tail) >= sizeof (destname) - 1) {
97 to, tail);
100 (void) sprintf(destname, "%s/%s", to, tail);
  /netvirt/usr/src/cmd/rcap/rcapd/
rcapd_rfd.c 62 static rfd_t *tail; /* tail of global list */ variable
98 if (tail == NULL) {
110 rfd = rfd_find_prev_class(tail, RFD_RESERVED);
117 rfd = rfd_find_prev_class(tail, RFD_PSINFO);
128 rfd = tail;
181 if (tail != NULL)
182 rfd->rfd_prev_class = rfd_find_prev_class(tail, class);
184 rfd->rfd_prev_class = tail;
185 rfd->rfd_prev = tail;
    [all...]
  /netvirt/usr/src/lib/libast/common/path/
pathfind.c 46 Dir_t* tail; /* directory list tail */ member in struct:__anon2426
68 if (state.tail)
69 state.tail = state.tail->next = dp;
71 state.head = state.tail = dp;
  /netvirt/usr/src/cmd/sgs/libelf/common/
input.c 95 size_t tail; local
122 * Tail gives one beyond the last offset that must be retrieved,
130 tail = base + sz + _elf_pagesize - 1;
133 tlbit = 1 << PGNUM(tail);
135 tlreg = &elf->ed_vm[REGNUM(tail)];
  /netvirt/usr/src/cmd/bc/
bc.y 102 | start stat tail
116 dlist : tail
117 | dlist _AUTO dlets tail
220 | slist tail stat
224 tail : '\n' label
  /netvirt/usr/src/cmd/fs.d/nfs/lib/
nfslogtab.c 212 struct logtab_ent_list *head = NULL, *tail = NULL, *tmpl; local
246 head = tail = tmpl;
252 tail->lel_next = tmpl;
253 tail = tmpl; /* remember the last element */
296 struct logtab_ent_list *lelp, *head = NULL, *tail = NULL; local
329 head = tail = lelp;
335 tail->lel_next = lelp;
336 tail = lelp; /* remember the last element */
  /netvirt/usr/src/cmd/fs.d/nfs/mountd/
exportlist.c 73 struct exportnode **tail; local
91 tail = &exportlist;
156 tail = newexport(sh->sh_path, groups, tail);
192 newgroup(char *grname, struct groupnode **tail)
203 *tail = new;
209 newexport(char *grname, struct groupnode *grplist, struct exportnode **tail)
221 *tail = new;
  /netvirt/usr/src/cmd/fs.d/nfs/nfslog/
buffer_list.c 374 struct sharepnt_ent *tail; local
379 tail = sep;
381 *se_tail = tail;
  /netvirt/usr/src/lib/libnsl/nis/cache/
local_cache.h 83 LocalCacheEntry *tail; member in class:NisLocalCache
  /netvirt/usr/src/lib/libslp/clib/
slp_queue.c 62 slp_queue_entry_t *tail; member in struct:queue
114 * Adds msg to the tail of queue q.
131 q->tail->next = qe;
132 q->tail = qe;
134 q->head = q->tail = qe;
179 q->head = q->tail = NULL;
  /netvirt/usr/src/lib/udapl/libdat/common/
dat_dictionary.c 64 DAT_DICTIONARY_NODE *tail; member in struct:DAT_DICTIONARY
128 /* create the tail node */
129 p_dictionary->tail = dat_os_alloc(sizeof (DAT_DICTIONARY_NODE));
130 if (NULL == p_dictionary->tail) {
136 (void) dat_os_memset(p_dictionary->tail, '\0',
139 p_dictionary->head->next = p_dictionary->tail;
140 p_dictionary->tail->prev = p_dictionary->head;
154 if (NULL != p_dictionary->tail) {
155 dat_os_free(p_dictionary->tail,
280 prev_node = p_dictionary->tail->prev
    [all...]
  /netvirt/usr/src/psm/stand/cpr/common/
support.c 95 cprop_t *prop, *tail; local
133 for (prop_errors = 0, prop = cdef.props, tail = prop + CPR_MAXPROP;
134 prop < tail; prop++) {
  /netvirt/usr/src/uts/common/c2/
audit_path.c 140 au_buff_t *tail; local
145 tail = NULL; /* only to satisfy lint */
154 tail->next_buf = m; /* tail set if head set */
157 tail = m;
  /netvirt/usr/src/uts/common/io/
strsun.c 59 mblk_t *odp = mp->b_cont; /* allows freemsg() to be a tail call */
254 mblk_t *head = NULL, **tail = &head; local
292 *tail = mp;
293 tail = &mp->b_cont;
  /netvirt/usr/src/cmd/fs.d/nfs/dfmounts/
dfmounts.c 125 int tail = 0; local
202 tail = 0;
204 if (tail++)
  /netvirt/usr/src/cmd/krb5/kadmin/ktutil/
ktutil_funcs.c 140 /* point lp at the tail of the list */
252 krb5_kt_list lp = NULL, tail = NULL, back = NULL; local
259 /* point lp at the tail of the list */
294 if (!tail)
295 tail = lp;
305 ktutil_free_kt_list(context, tail);
306 tail = NULL;
312 *list = tail;
381 krb5_kt_list lp = NULL, tail = NULL, back = NULL; local
392 /* point lp at the tail of the list *
    [all...]
  /netvirt/usr/src/cmd/picl/plugins/sun4u/blade/bsc/
picllom.h 97 node_el_t *tail; member in struct:node_list
  /netvirt/usr/src/cmd/projects/
projects.c 66 struct projlist *tail, *prev; local
91 tail = safe_malloc(sizeof (struct projlist));
98 tail->pl_next = NULL;
99 tail->pl_name = projname;
100 tail->pl_comm = projcomm;
102 projects = tail;
105 prev->pl_next = tail;
106 prev = tail;
  /netvirt/usr/src/cmd/rpcbind/
rpcb_svc_4.c 309 rpcb_entry_list_ptr rp, tail; local
411 tail = rp;
413 tail->rpcb_entry_next = rp;
414 tail = rp;

Completed in 1130 milliseconds

1 2 3 4 5 6 7