| /freebsd/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_plist.c | 50 bhnd_nvram_plist *plist, const char *name); 64 bhnd_nvram_plist *plist; in bhnd_nvram_plist_new() local 66 plist = bhnd_nv_calloc(1, sizeof(*plist)); in bhnd_nvram_plist_new() 67 if (plist == NULL) in bhnd_nvram_plist_new() 71 plist->refs = 1; in bhnd_nvram_plist_new() 74 plist->num_entries = 0; in bhnd_nvram_plist_new() 75 TAILQ_INIT(&plist->entries); in bhnd_nvram_plist_new() 78 for (size_t i = 0; i < nitems(plist->names); i++) in bhnd_nvram_plist_new() 79 LIST_INIT(&plist->names[i]); in bhnd_nvram_plist_new() 81 return (plist); in bhnd_nvram_plist_new() [all …]
|
| H A D | bhnd_nvram_plist.h | 48 bhnd_nvram_plist *bhnd_nvram_plist_retain(bhnd_nvram_plist *plist); 49 void bhnd_nvram_plist_release(bhnd_nvram_plist *plist); 51 bhnd_nvram_plist *bhnd_nvram_plist_copy(bhnd_nvram_plist *plist); 53 size_t bhnd_nvram_plist_count(bhnd_nvram_plist *plist); 55 int bhnd_nvram_plist_append_list(bhnd_nvram_plist *plist, 58 int bhnd_nvram_plist_append(bhnd_nvram_plist *plist, 60 int bhnd_nvram_plist_append_val(bhnd_nvram_plist *plist, 62 int bhnd_nvram_plist_append_bytes(bhnd_nvram_plist *plist, 65 int bhnd_nvram_plist_append_string(bhnd_nvram_plist *plist, 68 int bhnd_nvram_plist_replace(bhnd_nvram_plist *plist, [all …]
|
| /freebsd/sys/dev/cfe/ |
| H A D | cfe_api.c | 123 xiocb.plist.xiocb_cpuctl.cpu_number = cpu; in cfe_cpu_start() 124 xiocb.plist.xiocb_cpuctl.cpu_command = CFE_CPU_CMD_START; in cfe_cpu_start() 125 xiocb.plist.xiocb_cpuctl.gp_val = gp; in cfe_cpu_start() 126 xiocb.plist.xiocb_cpuctl.sp_val = sp; in cfe_cpu_start() 127 xiocb.plist.xiocb_cpuctl.a1_val = a1; in cfe_cpu_start() 128 xiocb.plist.xiocb_cpuctl.start_addr = (long)fn; in cfe_cpu_start() 147 xiocb.plist.xiocb_cpuctl.cpu_number = cpu; in cfe_cpu_stop() 148 xiocb.plist.xiocb_cpuctl.cpu_command = CFE_CPU_CMD_STOP; in cfe_cpu_stop() 167 xiocb.plist.xiocb_envbuf.enum_idx = idx; in cfe_enumenv() 168 xiocb.plist.xiocb_envbuf.name_ptr = XPTR_FROM_NATIVE(name); in cfe_enumenv() [all …]
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acoutput.h | 346 #define ACPI_INFO(plist) AcpiInfo plist argument 347 #define ACPI_WARNING(plist) AcpiWarning plist argument 348 #define ACPI_WARNING_ONCE(plist) ACPI_ONCE(AcpiWarning, plist) argument 349 #define ACPI_EXCEPTION(plist) AcpiException plist argument 350 #define ACPI_ERROR(plist) AcpiError plist argument 351 #define ACPI_ERROR_ONCE(plist) ACPI_ONCE(AcpiError, plist) argument 352 #define ACPI_BIOS_WARNING(plist) AcpiBiosWarning plist argument 353 #define ACPI_BIOS_EXCEPTION(plist) AcpiBiosException plist argument 354 #define ACPI_BIOS_ERROR(plist) AcpiBiosError plist argument 361 #define ACPI_INFO(plist) argument [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/krb/ |
| H A D | vfy_increds.c | 188 free_princ_list(krb5_context context, krb5_principal *plist) in free_princ_list() argument 192 if (plist == NULL) in free_princ_list() 194 for (i = 0; plist[i] != NULL; i++) in free_princ_list() 195 krb5_free_principal(context, plist[i]); in free_princ_list() 196 free(plist); in free_princ_list() 202 krb5_principal **plist) in add_princ_list() argument 208 for (i = 0; (*plist) != NULL && (*plist)[i] != NULL; i++) { in add_princ_list() 209 if (krb5_principal_compare(context, princ, (*plist)[i])) in add_princ_list() 213 newlist = realloc(*plist, (i + 2) * sizeof(*newlist)); in add_princ_list() 216 *plist = newlist; in add_princ_list() [all …]
|
| /freebsd/tools/tools/scsi-defects/ |
| H A D | scsi-defects.pl | 57 if ($ARGV[1] =~ /^[Gg]/) { $glist = 1; $plist = 0; } 58 elsif ($ARGV[1] =~ /^[Pp]/) { $glist = 0; $plist = 1; } 61 $glist = 1; $plist = 0; 65 "-c '{ Op code} 37 0 0:3 v:1 v:1 5:3 0 0 0 0 4:i2 0' $plist $glist " . 81 "-c '{ Op code} 37 0 0:3 v:1 v:1 5:3 0 0 0 0 v:i2 0' $plist $glist " .
|
| /freebsd/sys/kern/ |
| H A D | subr_memdesc.c | 101 plist_copyback(struct bus_dma_segment *plist, int sglist_cnt, int off, in plist_copyback() argument 107 while (plist->ds_len <= off) { in plist_copyback() 110 off -= plist->ds_len; in plist_copyback() 111 plist++; in plist_copyback() 120 if (todo > plist->ds_len - off) in plist_copyback() 121 todo = plist->ds_len - off; in plist_copyback() 123 phys_copyback(plist->ds_addr, off, todo, p); in plist_copyback() 125 plist++; in plist_copyback() 249 plist_copydata(struct bus_dma_segment *plist, int sglist_cnt, int off, in plist_copydata() argument 255 while (plist->ds_len <= off) { in plist_copydata() [all …]
|
| /freebsd/sbin/devfs/ |
| H A D | devfs.c | 187 STAILQ_HEAD(, ptrstq) plist; in tokenize() 195 STAILQ_INIT(&plist); in tokenize() 203 STAILQ_INSERT_TAIL(&plist, pt, tq); in tokenize() 208 assert(STAILQ_FIRST(&plist)->ptr == wline); in tokenize() 212 for (ap = *avp; !STAILQ_EMPTY(&plist);) { in tokenize() 213 pt = STAILQ_FIRST(&plist); in tokenize() 217 STAILQ_REMOVE_HEAD(&plist, tq); in tokenize()
|
| /freebsd/usr.bin/rpcgen/ |
| H A D | rpc_parse.c | 138 proc_list *plist; in def_program() local 157 plist = XALLOC(proc_list); in def_program() 158 get_type(&plist->res_prefix, &plist->res_type, in def_program() 160 if (streq(plist->res_type, "opaque")) { in def_program() 164 plist->proc_name = tok.str; in def_program() 178 plist->args.decls = decls; in def_program() 205 plist->proc_num = tok.str; in def_program() 206 plist->arg_num = num_args; in def_program() 207 *ptailp = plist; in def_program() 208 ptailp = &plist->next; in def_program() [all …]
|
| H A D | rpc_cout.c | 146 print_prog_header(proc_list *plist) in print_prog_header() argument 148 print_generic_header(plist->args.argname, 1); in print_prog_header() 290 proc_list *plist; in emit_program() local 293 for (plist = vlist->procs; plist != NULL; plist = plist->next) { in emit_program() 294 if (!newstyle || plist->arg_num < 2) in emit_program() 296 print_prog_header(plist); in emit_program() 297 for (dl = plist->args.decls; dl != NULL; in emit_program()
|
| H A D | rpc_hout.c | 155 proc_list *plist; in pargdef() local 159 for (plist = vers->procs; plist != NULL; in pargdef() 160 plist = plist->next) { in pargdef() 162 if (!newstyle || plist->arg_num < 2) { in pargdef() 165 name = plist->args.argname; in pargdef() 167 for (l = plist->args.decls; in pargdef()
|
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | pcache.c | 42 struct krb5_plugin * plist = NULL; in _krb5_load_ccache_plugins() local 47 &plist); in _krb5_load_ccache_plugins() 51 for (p = plist; p != NULL; p = _krb5_plugin_get_next(p)) { in _krb5_load_ccache_plugins() 63 _krb5_plugin_free(plist); in _krb5_load_ccache_plugins()
|
| /freebsd/contrib/pkgconf/libpkgconf/ |
| H A D | personality.c | 303 pkgconf_list_t plist = PKGCONF_LIST_INITIALIZER; in pkgconf_cross_personality_find() local 321 pkgconf_path_add(envvar, &plist, true); in pkgconf_cross_personality_find() 327 pkgconf_path_add(pathbuf, &plist, true); in pkgconf_cross_personality_find() 331 …from_environ("XDG_DATA_DIRS", "/usr/local/share" PKG_CONFIG_PATH_SEP_S "/usr/share", &plist, true); in pkgconf_cross_personality_find() 333 PKGCONF_FOREACH_LIST_ENTRY(plist.head, n) in pkgconf_cross_personality_find() 341 pkgconf_path_free(&plist); in pkgconf_cross_personality_find() 344 pkgconf_path_split(PERSONALITY_PATH, &plist, true); in pkgconf_cross_personality_find() 346 PKGCONF_FOREACH_LIST_ENTRY(plist.head, n) in pkgconf_cross_personality_find() 356 pkgconf_path_free(&plist); in pkgconf_cross_personality_find()
|
| /freebsd/tools/tools/sysbuild/ |
| H A D | sysbuild.sh | 188 true > /tmp/_.plist 189 true > /tmp/_.plist.tdone 190 echo 'digraph {' > /tmp/_.plist.dot 192 if grep -q "^$t\$" /tmp/_.plist.tdone ; then 195 echo "$t" >> /tmp/_.plist.tdone 218 echo "\"$t\" -> \"$d\"" >> /tmp/_.plist.dot 220 if grep -q "^$d\$" /tmp/_.plist ; then 222 elif grep -q "^$d\$" /tmp/_.plist.tdone ; then 235 echo "$d" >> /tmp/_.plist 239 echo '}' >> /tmp/_.plist.dot [all …]
|
| /freebsd/usr.sbin/bsnmpd/modules/snmp_hostres/ |
| H A D | hostres_swrun_tbl.c | 325 struct kinfo_proc *plist, *kp; in swrun_OS_get_procs() local 330 plist = kvm_getprocs(hr_kd, KERN_PROC_ALL, 0, &nproc); in swrun_OS_get_procs() 331 if (plist == NULL || nproc < 0) { in swrun_OS_get_procs() 335 for (i = 0, kp = plist; i < nproc; i++, kp++) { in swrun_OS_get_procs() 428 struct kinfo_proc *plist; in fetch_swrun_entry() local 456 plist = kvm_getprocs(hr_kd, KERN_PROC_PID, in fetch_swrun_entry() 458 if (plist == NULL || nproc != 1) { in fetch_swrun_entry() 462 kinfo_proc_to_swrun_entry(plist, entry); in fetch_swrun_entry() 472 struct kinfo_proc *plist; in invalidate_swrun_entry() local 523 plist = kvm_getprocs(hr_kd, KERN_PROC_PID, in invalidate_swrun_entry() [all …]
|
| /freebsd/sys/arm64/nvidia/tegra210/ |
| H A D | tegra210_car.c | 78 #define DIV7_1(_id, cname, plist, o, s) \ argument 82 .clkdef.parent_names = (const char *[]){plist}, \ 93 #define DIV(_id, cname, plist, o, s, w, f) \ argument 97 .clkdef.parent_names = (const char *[]){plist}, \ 107 #define GATE_PLL(_id, cname, plist, o, s) \ argument 111 .clkdef.parent_names = (const char *[]){plist}, \ 122 #define GATE(_id, cname, plist, o, s) \ argument 126 .clkdef.parent_names = (const char *[]){plist}, \ 137 #define GATE_INV(_id, cname, plist, o, s) \ argument 141 .clkdef.parent_names = (const char *[]){plist}, \
|
| /freebsd/contrib/ntp/ntpdc/ |
| H A D | ntpdc_ops.c | 354 struct info_peer_list *plist; in peerlist() local 362 &itemsize, (void *)&plist, 0, in peerlist() 381 SET_ADDR(paddr, plist->v6_flag, plist->addr, plist->addr6); in peerlist() 383 ((pcmd->argval->ival == 6) && (plist->v6_flag != 0)) || in peerlist() 384 ((pcmd->argval->ival == 4) && (plist->v6_flag == 0))) in peerlist() 389 modetoa(plist->hmode), strhost); in peerlist() 395 plist++; in peerlist() 437 struct info_peer_summary *plist; in dopeers() local 449 &items, &itemsize, (void *)&plist, 0, in dopeers() 473 if (plist->flags & INFO_FLAG_SYSPEER) in dopeers() [all …]
|
| /freebsd/tools/test/stress2/tools/ |
| H A D | splitall.sh | 56 plist=`cat $part | tr '\n' ' '` 58 echo "./all.sh -onc $plist" 60 ./all.sh -onc $plist
|
| /freebsd/crypto/krb5/src/plugins/kdb/ldap/ldap_util/ |
| H A D | kdb5_ldap_list.c | 102 char **plist = list; in krb5_parse_list() local 116 plist++, count++) { in krb5_parse_list() 117 *plist = strdup(token); in krb5_parse_list() 118 if (*plist == NULL) { in krb5_parse_list() 124 *plist = NULL; in krb5_parse_list()
|
| /freebsd/sys/arm/nvidia/tegra124/ |
| H A D | tegra124_car.c | 77 #define DIV7_1(_id, cname, plist, o, s) \ argument 81 .clkdef.parent_names = (const char *[]){plist}, \ 92 #define DIV(_id, cname, plist, o, s, w, f) \ argument 96 .clkdef.parent_names = (const char *[]){plist}, \ 106 #define GATE_PLL(_id, cname, plist, o, s) \ argument 110 .clkdef.parent_names = (const char *[]){plist}, \ 121 #define GATE(_id, cname, plist, o, s) \ argument 125 .clkdef.parent_names = (const char *[]){plist}, \ 136 #define GATE_INV(_id, cname, plist, o, s) \ argument 140 .clkdef.parent_names = (const char *[]){plist}, \
|
| /freebsd/share/mk/ |
| H A D | bsd.pkg.mk | 136 CLEANFILES+= *.pkgucl *.ucl.in *.plist *.pkg 146 ${_pkgfilename}: ${_pkgfullname}.pkgucl ${_pkg}.plist 152 @if [ "$$(grep -vc '^@dir' "${.ALLSRC:M*.plist}")" -eq 0 ]; \ 158 ${_PKG_CREATE} -M ${.ALLSRC:M*.pkgucl} -p ${.ALLSRC:M*.plist} 215 .SUFFIXES: .plist .ucl .pkg
|
| /freebsd/crypto/krb5/src/clients/ksu/ |
| H A D | heuristic.c | 45 get_all_princ_from_file(FILE *fp, char ***plist) in get_all_princ_from_file() argument 84 *plist = temp_list; in get_all_princ_from_file() 312 get_closest_principal(krb5_context context, char **plist, in get_closest_principal() argument 322 if (! plist ) return 0; in get_closest_principal() 326 while(plist[i]){ in get_closest_principal() 328 retval = krb5_parse_name(context, plist[i], &temp_client); in get_closest_principal() 463 find_princ_in_list(krb5_context context, krb5_principal princ, char **plist, in find_princ_in_list() argument 473 if (!plist) return 0; in find_princ_in_list() 479 while (plist[i] ){ in find_princ_in_list() 480 if (!strcmp(plist[i], princname)){ in find_princ_in_list()
|
| /freebsd/contrib/libpcap/doc/ |
| H A D | README.macos | 47 org.tcpdump.chmod_bpf.plist launchd plist file. chmod_bpf should be 48 installed in /usr/local/bin/chmod_bpf, and org.tcpdump.chmod_bpf.plist 50 org.tcpdump.chmod_bpf.plist, must be owned by root. Installing the 51 script and plist file won't immediately cause the script to be executed; 59 sudo launchctl load /Library/LaunchDaemons/org.tcpdump.chmod_bpf.plist
|
| /freebsd/bin/pkill/ |
| H A D | pkill.c | 95 static struct kinfo_proc *plist; variable 350 plist = kvm_getprocs(kd, KERN_PROC_PID, pidfromfile, &nproc); in main() 352 plist = kvm_getprocs(kd, KERN_PROC_PROC, 0, &nproc); in main() 353 if (plist == NULL) { in main() 379 for (i = 0, kp = plist; i < nproc; i++, kp++) { in main() 428 for (i = 0, kp = plist; i < nproc; i++, kp++) { in main() 530 for (i = 0, kp = plist; i < nproc; i++, kp++) { in main() 553 for (i = 0, kp = plist; i < nproc; i++, kp++) { in main() 583 for (i = 0, rv = 0, kp = plist; i < nproc; i++, kp++) { in main()
|
| /freebsd/contrib/netbsd-tests/net/npf/ |
| H A D | t_npf.sh | 32 atf_check -o ignore -e ignore npfctl debug "$(atf_get_srcdir)/npftest.conf" ./npf.plist 33 atf_check -o ignore npftest -c npf.plist -T "${name}"
|