Searched defs:flist (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_init.c344 profile_filespec_t *flist = 0; local
363 flist = (profile_filespec_t *) malloc(sizeof(profile_filespec_t) * (size_t) (fcount + 1));
364 if (!flist)
367 memset(flist, 0, sizeof(char *) * (size_t) (fcount+1));
370 flist[i] = (char *) malloc((size_t) (tmp+1));
371 if (!flist[i])
373 memcpy(flist[i], bp, (size_t) tmp);
374 flist[i][tmp] = '\0';
386 if ((retval = profile_init((const_profile_filespec_t *) flist,
394 if (flist) {
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dmalloc.c95 static void *flist[FREESIZE]; /* list of blocks to be freed on next malloc */ variable
96 static int freeidx; /* index of free blocks in flist % FREESIZE */
206 flist[freeidx] = Lfree = NULL;
214 flist[freeidx] = Lfree = NULL;
849 * by old. The pointer to old is saved on a list, flist,
851 * blocks pointed to in flist are actually freed via
892 if (old == flist[i])
895 if (flist[freeidx] != NULL)
896 realfree(flist[freeidx]);
897 flist[freeid
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_decl.c283 * Examine the list of formal parameters 'flist' and determine if the formal
285 * If 'fnp' is in 'flist', do not search beyond 'fnp' itself in 'flist'.
288 dt_decl_protoform(dt_node_t *fnp, dt_node_t *flist) argument
292 for (dnp = flist; dnp != fnp && dnp != NULL; dnp = dnp->dn_list) {
304 * against which to compare the prototype is specified as 'flist'. If plist
305 * and flist are the same, we require that named parameters are unique. If
306 * plist and flist are different, we require that named parameters in plist
307 * match a name that is present in flist.
311 dt_node_t *flist, cons
310 dt_decl_prototype(dt_node_t *plist, dt_node_t *flist, const char *kind, uint_t flags) argument
[all...]
/osnet-11/usr/src/lib/libumem/common/
H A Dvmem.c821 int hb, flist, resv; local
879 flist = lowbit(P2ALIGN(vmp->vm_freemap, size));
886 flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb));
889 for (vbest = NULL, vsp = (flist == 0) ? NULL :
890 vmp->vm_freelist[flist - 1].vs_knext;
904 flist = lowbit(P2ALIGN(vmp->vm_freemap,
906 if (flist-- == 0)
908 vsp = (vmem_seg_t *)&vmp->vm_freelist[flist];
1070 int flist = 0; local
1097 flist
[all...]
/osnet-11/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dnew_host.c118 struct ST_FCN_LIST *flist = (struct ST_FCN_LIST *)FunctionList; local
158 if (flist != NULL)
159 (*flist) = function_list;
/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdlstat.c100 struct flowlist *flist; local
103 for (match = 0, flist = stattable;
105 match++, flist++) {
107 if (flist == NULL)
111 if (strncmp(flowname, flist->flowname, MAXFLOWNAMELEN)
113 return (flist);
116 if (linkid == flist->linkid)
117 return (flist);
135 flist = &stattable[statentry];
136 bzero(flist, sizeo
148 print_flow_stats(dladm_handle_t handle, struct flowlist *flist) argument
187 struct flowlist *flist; local
247 print_link_stats(dladm_handle_t handle, struct flowlist *flist) argument
312 struct flowlist *flist; local
374 struct flowlist *flist; local
[all...]

Completed in 36 milliseconds