Home
last modified time | relevance | path

Searched refs:flist (Results 1 – 25 of 32) sorted by relevance

12

/illumos-gate/usr/src/tools/scripts/
H A Dgit-pbchk.py268 def comchk(root, parent, flist, output): argument
299 for f in flist():
305 def cstyle(root, parent, flist, output): argument
317 def hdrchk(root, parent, flist, output): argument
327 def jstyle(root, parent, flist, output): argument
350 for f in flist():
411 for f in flist(isshell):
418 def pkgfmt(root, parent, flist, output): argument
454 for f in flist():
474 for f in flist():
[all …]
H A Dwsdiff.py608 def flistCatalog(base, ptch, flist) : argument
614 fd = open(flist, "r")
616 error("could not open: " + flist)
1124 flist = []
1126 flist.append(str_prefix_trunc(fn, ArchTmpDir1))
1127 baseFlist = flist
1129 flist = []
1131 flist.append(str_prefix_trunc(fn, ArchTmpDir2))
1132 ptchFlist = flist
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_init.c355 profile_filespec_t *flist = 0; in profile_ser_internalize() local
374 if (!flist) in profile_ser_internalize()
377 memset(flist, 0, sizeof(char *) * (fcount+1)); in profile_ser_internalize()
380 flist[i] = (char *) malloc((size_t) (tmp+1)); in profile_ser_internalize()
381 if (!flist[i]) in profile_ser_internalize()
383 memcpy(flist[i], bp, (size_t) tmp); in profile_ser_internalize()
384 flist[i][tmp] = '\0'; in profile_ser_internalize()
404 if (flist) { in profile_ser_internalize()
406 if (flist[i]) in profile_ser_internalize()
407 free(flist[i]); in profile_ser_internalize()
[all …]
/illumos-gate/usr/src/cmd/boot/scripts/
H A Droot_archive.ksh58 rm -f /tmp/flist$$
143 -print 2> /dev/null > /tmp/flist$$
145 >> /tmp/flist$$
154 sed 's#^#tmp/root/#' >> /tmp/flist$$
156 flist=`cat /tmp/flist$$`
159 rm -f $flist
161 for file in $flist ; do
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_conn.c303 uchar_t *flist; in sctp_conn_request() local
310 flist = kmem_alloc(fsize, KM_NOSLEEP); in sctp_conn_request()
311 if (slist == NULL || flist == NULL) { in sctp_conn_request()
314 if (flist != NULL) in sctp_conn_request()
315 kmem_free(flist, fsize); in sctp_conn_request()
323 sctp_get_faddr_list(eager, flist, fsize); in sctp_conn_request()
325 eager->sctp_nsaddrs, econnp->conn_lport, flist, in sctp_conn_request()
625 uchar_t *flist; in sctp_connect() local
632 flist = kmem_alloc(fsize, KM_SLEEP); in sctp_connect()
635 sctp_get_faddr_list(sctp, flist, fsize); in sctp_connect()
[all …]
H A Dsctp_hash.c164 uchar_t *flist; in cl_sctp_walk_list_stack() local
189 flist = kmem_alloc(fsize, cansleep ? KM_SLEEP : KM_NOSLEEP); in cl_sctp_walk_list_stack()
190 if (slist == NULL || flist == NULL) { in cl_sctp_walk_list_stack()
194 if (flist != NULL) in cl_sctp_walk_list_stack()
195 kmem_free(flist, fsize); in cl_sctp_walk_list_stack()
201 sctp_get_faddr_list(sctp, flist, fsize); in cl_sctp_walk_list_stack()
215 cl_sctpi.cl_sctpi_faddrp = flist; in cl_sctp_walk_list_stack()
218 kmem_free(flist, fsize); in cl_sctp_walk_list_stack()
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c1776 filelist_t flist; in list_archive() local
3133 filelist_t flist; in update_required() local
3428 dump_errormsg(flist); in create_sparc_archive()
3432 filelist_free(&flist); in create_sparc_archive()
4459 if ((flist.head == NULL) || (flist.head != flist.tail)) { in synchronize_BE_menu()
6022 if ((flist.head == NULL) || (flist.head != flist.tail)) {
6117 if (flist.head && (flist.head == flist.tail)) {
6143 if ((flist.head == NULL) || (flist.head != flist.tail)) {
6193 if ((flist.head == NULL) || (flist.head != flist.tail)) {
6330 if ((flist.head == NULL) || (flist.head != flist.tail)) {
[all …]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmalloc.c95 static void *flist[FREESIZE]; /* list of blocks to be freed on next malloc */ variable
206 flist[freeidx] = Lfree = NULL; in _malloc_unlocked()
214 flist[freeidx] = Lfree = NULL; in _malloc_unlocked()
886 if (old == flist[i]) in _free_unlocked()
889 if (flist[freeidx] != NULL) in _free_unlocked()
890 realfree(flist[freeidx]); in _free_unlocked()
891 flist[freeidx] = Lfree = old; in _free_unlocked()
909 flp = (char **)&(flist[freeidx]); in cleanfree()
911 if (flp == (char **)&(flist[0])) in cleanfree()
912 flp = (char **)&(flist[FREESIZE]); in cleanfree()
/illumos-gate/usr/src/uts/common/os/
H A Dvmem.c923 int flist = 0; in vmem_canalloc() local
931 return (flist); in vmem_canalloc()
949 int hb, flist, resv; in vmem_xalloc() local
1012 for (vbest = NULL, vsp = (flist == 0) ? NULL : in vmem_xalloc()
1013 vmp->vm_freelist[flist - 1].vs_knext; in vmem_xalloc()
1027 flist = lowbit(P2ALIGN(vmp->vm_freemap, in vmem_xalloc()
1029 if (flist-- == 0) in vmem_xalloc()
1277 int flist = 0; in vmem_alloc() local
1307 if (flist-- == 0) { in vmem_alloc()
1313 ASSERT(size <= (1UL << flist)); in vmem_alloc()
[all …]
H A Dmsg.c1260 msg_wakeup_rdr(kmsqid_t *qp, msg_select_t **flist, long type) in msg_wakeup_rdr() argument
1262 msg_select_t *walker = *flist; in msg_wakeup_rdr()
1271 } while (!wakeup && walker != *flist); in msg_wakeup_rdr()
1273 *flist = (*flist)->next_selection; in msg_wakeup_rdr()
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_multi.c66 slist_t *flist);
370 flist->sl_numsrc = 0; in ilm_gen_filter()
377 flist->sl_numsrc = 0; in ilm_gen_filter()
403 slist_t *flist; in ilm_update_add() local
424 l_free(flist); in ilm_update_add()
451 l_free(flist); in ilm_update_add()
473 l_free(flist); in ilm_update_add()
484 slist_t *flist; in ilm_update_del() local
511 l_free(flist); in ilm_update_del()
533 l_free(flist); in ilm_update_del()
[all …]
H A Digmp.c84 mcast_record_t rtype, slist_t *flist);
1055 l_difference(ilm->ilm_filter, flist, a_minus_b); in igmp_statechange()
1056 l_difference(flist, ilm->ilm_filter, b_minus_a); in igmp_statechange()
1088 rp = mcast_merge_rtx(ilm, rp, flist); in igmp_statechange()
1178 rp = mcast_merge_rtx(ilm, rp, flist); in mld_statechange()
2741 slist_t *flist) in mcast_init_rtx() argument
2761 COPY_SLIST(flist, rtxp->rtx_block); in mcast_init_rtx()
2768 COPY_SLIST(flist, rtxp->rtx_allow); in mcast_init_rtx()
2834 COPY_SLIST(flist, rtxp->rtx_allow); in mcast_merge_rtx()
2838 COPY_SLIST(flist, rtxp->rtx_block); in mcast_merge_rtx()
[all …]
/illumos-gate/usr/src/lib/libumem/common/
H A Dvmem.c824 int hb, flist, resv; in vmem_xalloc() local
882 flist = lowbit(P2ALIGN(vmp->vm_freemap, size)); in vmem_xalloc()
892 for (vbest = NULL, vsp = (flist == 0) ? NULL : in vmem_xalloc()
893 vmp->vm_freelist[flist - 1].vs_knext; in vmem_xalloc()
907 flist = lowbit(P2ALIGN(vmp->vm_freemap, in vmem_xalloc()
909 if (flist-- == 0) in vmem_xalloc()
911 vsp = (vmem_seg_t *)&vmp->vm_freelist[flist]; in vmem_xalloc()
1076 int flist = 0; in vmem_alloc() local
1109 if (flist-- == 0) { in vmem_alloc()
1115 ASSERT(size <= (1UL << flist)); in vmem_alloc()
[all …]
/illumos-gate/usr/src/cmd/ls/
H A Dls.c1091 qsort(flist, (unsigned)nargs, sizeof (struct lbuf *), in main()
1094 if ((flist[i]->ltype == 'd' && dflg == 0) || fflg) in main()
1098 pem(&flist[0], &flist[i], 0); in main()
1100 pdirectory(flist[i]->ln.namep, Rflg || in main()
1101 (amino > 1), nargs, 0, flist[i]->ancinfo); in main()
1168 qsort(&flist[lp], (unsigned)(nfiles - lp), in pdirectory()
1173 ap = flist[j]; in pdirectory()
1197 pem(&flist[lp], &flist[nfiles], lflg||sflg); in pdirectory()
1814 if (((flist = realloc(flist, in gstat()
1832 flist[nfiles++] = rep; in gstat()
[all …]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockparams.c770 list_t *flist; in sockparams_filter_cleanup_impl() local
776 flist = (ent->sofe_flags & SOFEF_AUTO) ? in sockparams_filter_cleanup_impl()
778 for (fil = list_head(flist); fil != NULL; in sockparams_filter_cleanup_impl()
779 fil = list_next(flist, fil)) { in sockparams_filter_cleanup_impl()
781 list_remove(flist, fil); in sockparams_filter_cleanup_impl()
/illumos-gate/usr/src/cmd/lp/model/
H A Dnetstandard287 # flist=* | lpd=* | options=* )
288 flist=* | lpd=* )
289 #LOPT stty=* | flist=* | lpd=* | lopt=* )
320 flist= )
321 flist="${flist} ${item}"
H A Dtsol_netstandard321 # flist=* | lpd=* | options=* )
322 flist=* | lpd=* )
323 #LOPT stty=* | flist=* | lpd=* | lopt=* )
354 flist= )
355 flist="${flist} ${item}"
H A Dtsol_netstandard_foomatic338 # flist=* | lpd=* | options=* )
339 flist=* | lpd=* )
340 #LOPT stty=* | flist=* | lpd=* | lopt=* )
371 flist= )
372 flist="${flist} ${item}"
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dprintlist.c37 struct stringlist *flist = &fhead; variable
H A Darcs.c516 if (((on_flist = onlist(flist, childp->name)) != 0) || in doflags()
528 if ((!onlist(flist, childp->name)) && in doflags()
H A Dgprof.h349 extern struct stringlist *flist;
/illumos-gate/usr/src/lib/brand/shared/zone/
H A Dcommon.ksh723 flist=$(for i in $list
729 vlog "cd \"$source_dir\" && find $flist $findopts | "
734 ( cd "$source_dir" && find $flist $findopts | \
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_decl.c305 dt_decl_protoform(dt_node_t *fnp, dt_node_t *flist) in dt_decl_protoform() argument
309 for (dnp = flist; dnp != fnp && dnp != NULL; dnp = dnp->dn_list) { in dt_decl_protoform()
328 dt_node_t *flist, const char *kind, uint_t flags) in dt_decl_prototype() argument
332 int form = plist != flist; in dt_decl_prototype()
365 dt_decl_protoform(dnp, flist) != form) { in dt_decl_prototype()
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dplatform.c937 char **flist; in platform_get_files_stddirs() local
958 flist = platform_get_files(dirlist, fname, nodups); in platform_get_files_stddirs()
964 return (flist); in platform_get_files_stddirs()
1426 platform_free_eft_files(char **flist) in platform_free_eft_files() argument
1430 if (flist == NULL || *flist == NULL) in platform_free_eft_files()
1433 f = flist; in platform_free_eft_files()
1438 FREE(flist); in platform_free_eft_files()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dasppp2pppd275 local (@flist, $value) = ();
282 push @flist, $file;
287 @flist;

12