/illumos-gate/usr/src/cmd/idmap/idmapd/ |
H A D | dbutils.c | 1399 res->info.how.map_type = IDMAP_MAP_TYPE_KNOWN_SID; in lookup_wksids_sid2pid() 1466 res->info.how.map_type = IDMAP_MAP_TYPE_KNOWN_SID; in lookup_wksids_pid2sid() 1724 res->info.how.map_type = strtoul(values[6], &end, 10); in lookup_cache_sid2pid() 1725 switch (res->info.how.map_type) { in lookup_cache_sid2pid() 1727 res->info.how.idmap_how_u.ad.dn = in lookup_cache_sid2pid() 1729 res->info.how.idmap_how_u.ad.attr = in lookup_cache_sid2pid() 1731 res->info.how.idmap_how_u.ad.value = in lookup_cache_sid2pid() 1736 res->info.how.idmap_how_u.nldap.dn = in lookup_cache_sid2pid() 1738 res->info.how.idmap_how_u.nldap.attr = in lookup_cache_sid2pid() 1740 res->info.how.idmap_how_u.nldap.value = in lookup_cache_sid2pid() [all …]
|
H A D | nldaputils.c | 745 idmap_how *how; in nldap_lookup_batch() local 799 idmap_how_clear(&res->info.how); in nldap_lookup_batch() 801 how = &res->info.how; in nldap_lookup_batch() 802 how->map_type = IDMAP_MAP_TYPE_DS_NLDAP; in nldap_lookup_batch() 806 &how->idmap_how_u.nldap.dn, in nldap_lookup_batch() 807 &how->idmap_how_u.nldap.attr, in nldap_lookup_batch() 808 &how->idmap_how_u.nldap.value, in nldap_lookup_batch() 827 idmap_how_clear(&res->info.how); in nldap_lookup_batch() 829 how = &res->info.how; in nldap_lookup_batch() 830 how->map_type = IDMAP_MAP_TYPE_DS_NLDAP; in nldap_lookup_batch() [all …]
|
H A D | server.c | 503 idmap_how_clear(&res->info.how); in idmap_get_mapped_ids_1_svc() 521 idmap_how *how; in list_mappings_cb() local 592 how = &result->mappings.mappings_val[cb_data->next].info.how; in list_mappings_cb() 593 how->map_type = strtoul(argv[11], &end, 10); in list_mappings_cb() 594 switch (how->map_type) { in list_mappings_cb() 596 how->idmap_how_u.ad.dn = in list_mappings_cb() 598 how->idmap_how_u.ad.attr = in list_mappings_cb() 600 how->idmap_how_u.ad.value = in list_mappings_cb() 605 how->idmap_how_u.nldap.dn = in list_mappings_cb() 607 how->idmap_how_u.nldap.attr = in list_mappings_cb() [all …]
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | sigprocmask.c | 42 lwp_sigmask(int how, uint_t bits0, uint_t bits1, uint_t bits2, uint_t bits3) in lwp_sigmask() argument 67 switch (how) { in lwp_sigmask() 93 sigprocmask(int how, sigset_t *setp, sigset_t *osetp) in sigprocmask() argument 104 switch (how) { in sigprocmask() 124 (void) lwp_sigmask(how, in sigprocmask()
|
/illumos-gate/usr/src/test/bhyve-tests/tests/inst_emul/ |
H A D | suspend_info.c | 68 *vtc->howp = vexit.u.suspended.how; in vcpu0_thread() 117 enum vm_suspend_how how; in test_plain_suspend() local 121 .howp = &how, in test_plain_suspend() 135 if (how != test_how) { in test_plain_suspend() 137 how, test_how); in test_plain_suspend() 199 vexit.u.suspended.how; in test_emitted_triplefault()
|
H A D | triple_fault.c | 67 if (vexit.u.suspended.how != expected_how) { in main() 69 vexit.u.suspended.how, expected_how); in main()
|
/illumos-gate/usr/src/stand/lib/sa/sparc/ |
H A D | prom_misc.c | 34 enum encode_how how) in prom_create_encoded_prop() argument 55 if (how == ENCODE_BYTES) { in prom_create_encoded_prop() 58 assert(how == ENCODE_STRING); in prom_create_encoded_prop()
|
/illumos-gate/usr/src/lib/libc/port/sys/ |
H A D | lwp_sigmask.c | 32 __lwp_sigmask(int how, const sigset_t *set) in __lwp_sigmask() argument 34 return (syscall(SYS_lwp_sigmask, how, in __lwp_sigmask()
|
/illumos-gate/usr/src/uts/common/smbsrv/ |
H A D | mbuf.h | 213 #define MGET(m, how, type) { \ argument 222 #define MGETHDR(m, how, type) { \ argument 231 #define MCLGET(m, how) \ argument 322 mbuf_t *m_prepend(struct mbuf *m, int plen, int how);
|
/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | sigaction.c | 604 thr_sigsetmask(int how, const sigset_t *set, sigset_t *oset) in thr_sigsetmask() argument 615 switch (how) { in thr_sigsetmask() 631 switch (how) { in thr_sigsetmask() 662 pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) in pthread_sigmask() argument 664 return (thr_sigsetmask(how, set, oset)); in pthread_sigmask() 669 sigprocmask(int how, const sigset_t *set, sigset_t *oset) in sigprocmask() argument 677 return (__sigprocmask(how, set, oset)); in sigprocmask() 679 if ((error = thr_sigsetmask(how, set, oset)) != 0) { in sigprocmask()
|
/illumos-gate/usr/src/cmd/idmap/idmap/ |
H A D | idmap.c | 1344 print_how(idmap_how *how) in print_how() argument 1350 switch (how->map_type) { in print_how() 1354 CHECK_NULL(how->idmap_how_u.ad.dn)); in print_how() 1356 CHECK_NULL(how->idmap_how_u.ad.attr), in print_how() 1357 CHECK_NULL(how->idmap_how_u.ad.value)); in print_how() 1363 CHECK_NULL(how->idmap_how_u.nldap.dn)); in print_how() 1365 CHECK_NULL(how->idmap_how_u.nldap.attr), in print_how() 1366 CHECK_NULL(how->idmap_how_u.nldap.value)); in print_how() 1371 rule = &how->idmap_how_u.rule; in print_how() 1408 CHECK_NULL(how->idmap_how_u.idmu.dn)); in print_how() [all …]
|
/illumos-gate/usr/src/cmd/sendmail/cf/feature/ |
H A D | ldap_routing.m4 | 22 # Check for third argument to indicate how to deal with non-existant 29 # Check for fourth argument to indicate how to deal with +detail info 34 # Check for sixth argument to indicate how to deal with tempfails
|
/illumos-gate/usr/src/uts/common/crypto/api/ |
H A D | kcf_random.c | 466 rnd_get_bytes(uint8_t *ptr, size_t len, extract_type_t how) in rnd_get_bytes() argument 483 switch (how) { in rnd_get_bytes() 498 if (how == NONBLOCK_EXTRACT) { in rnd_get_bytes() 507 if (how == NONBLOCK_EXTRACT && (rnbyte_cnt < len)) in rnd_get_bytes() 514 if (how == BLOCKING_EXTRACT) { in rnd_get_bytes() 535 if (len > 0 && how == ALWAYS_EXTRACT) { in rnd_get_bytes() 559 extract_type_t how; in kcf_rnd_get_bytes() local 562 how = noblock ? NONBLOCK_EXTRACT : BLOCKING_EXTRACT; in kcf_rnd_get_bytes() 564 if ((error = rnd_get_bytes(ptr, len, how)) != 0) in kcf_rnd_get_bytes()
|
/illumos-gate/usr/src/uts/common/io/bpf/ |
H A D | bpf_mac.c | 119 mac_bpf_promisc_add(uintptr_t chandle, int how, void *arg, uintptr_t *promisc, in mac_bpf_promisc_add() argument 122 return (mac_promisc_add((mac_client_handle_t)chandle, how, bpf_mtap, in mac_bpf_promisc_add()
|
/illumos-gate/usr/src/cmd/id/ |
H A D | id.c | 327 prid(TYPE how, uid_t id) in prid() argument 331 switch ((int)how) { in prid() 352 switch ((int)how) { in prid()
|
/illumos-gate/usr/src/cmd/bhyve/amd64/ |
H A D | vmexit.c | 530 enum vm_suspend_how how; in vmexit_suspend() local 533 how = vme->u.suspended.how; in vmexit_suspend() 537 switch (how) { in vmexit_suspend() 549 EPRINTLN("vmexit_suspend: invalid reason %d", how); in vmexit_suspend()
|
/illumos-gate/usr/src/uts/common/inet/ipnet/ |
H A D | ipnet_bpf.c | 135 ipnet_bpf_promisc_add(uintptr_t chandle, int how, void *arg, in ipnet_bpf_promisc_add() argument 143 switch (how) { in ipnet_bpf_promisc_add()
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_nfs3.c | 166 int sz, how; local 230 how = getxdr_long(); 232 fh, filetype(how), name); 1181 long how; in sum_createhow() local 1183 how = getxdr_long(); in sum_createhow() 1184 switch (how) { in sum_createhow()
|
/illumos-gate/usr/src/lib/brand/solaris10/s10_brand/common/ |
H A D | s10_signal.c | 340 s10_lwp_sigmask(sysret_t *rval, int how, uint_t bits0, uint_t bits1) in s10_lwp_sigmask() argument 354 how, in s10_lwp_sigmask() 380 s10_sigprocmask(sysret_t *rval, int how, const sigset_t *set, sigset_t *oset) in s10_sigprocmask() argument 394 how, set_ptr, oset_ptr)) != 0) in s10_sigprocmask()
|
/illumos-gate/usr/src/boot/efi/loader/ |
H A D | main.c | 508 int how, rv; in parse_uefi_con_out() local 517 how = 0; in parse_uefi_con_out() 584 how = 0; in parse_uefi_con_out() 586 how |= RB_MULTIPLE; in parse_uefi_con_out() 588 how |= RB_SERIAL; in parse_uefi_con_out() 590 how |= RB_SERIAL; in parse_uefi_con_out() 592 return (how); in parse_uefi_con_out()
|
/illumos-gate/usr/src/lib/libnisdb/ |
H A D | db_mindex.cc | 51 db_mindex::db_mindex(db_scheme *how, char *tablePath) : rversion() in db_mindex() argument 57 init(how); in db_mindex() 89 db_mindex::init(db_scheme * how) in init() argument 91 scheme = new db_scheme(how); // make copy in init() 101 indices.indices_len = how->numkeys(); in init() 102 db_key_desc * keys = how->keyloc(); in init()
|
/illumos-gate/usr/src/cmd/sgs/libelf/demo/ |
H A D | 00README | 25 This directory contains sample programs that demonstrate how to use libelf. 37 Demonstrates how to examine a file opened with
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | null.test | 39 # Check for how arithmetic expressions handle NULL 52 # Check to see how the CASE expression handles NULL values. The 107 # Check to see how WHERE clauses handle NULL values. A NULL value
|
/illumos-gate/usr/src/cmd/fs.d/smbclnt/fksmbcl/ |
H A D | README | 26 how to walk data structures in libfksmbfs, etc. 70 Here is an example of how to connect, mount, and list a directory:
|
/illumos-gate/usr/src/lib/libsocket/socket/ |
H A D | weaks.c | 112 _shutdown(int sock, int how) in _shutdown() argument 114 return (_so_shutdown(sock, how, SOV_DEFAULT)); in _shutdown()
|