Home
last modified time | relevance | path

Searched refs:mod (Results 101 – 125 of 226) sorted by relevance

12345678910

/illumos-gate/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid_hash.c56 did_hash_fini(topo_mod_t *mod) in did_hash_fini() argument
58 did_hash_t *dh = (did_hash_t *)topo_mod_getspecific(mod); in did_hash_fini()
60 topo_mod_setspecific(mod, NULL); in did_hash_fini()
H A Dpcibus_labels.h105 extern int pci_label_cmn(topo_mod_t *mod, tnode_t *, nvlist_t *, nvlist_t **);
106 extern int pci_fru_cmn(topo_mod_t *mod, tnode_t *, nvlist_t *, nvlist_t **);
/illumos-gate/usr/src/tools/smatch/src/
H A Dshow-parse.c112 const char *modifier_string(unsigned long mod) in modifier_string() argument
118 unsigned long mod; in modifier_string() member
156 if (mod & m->mod) { in modifier_string()
296 unsigned long mod = 0; in do_show_type() local
312 mod &= ~MOD_SPECIFIER; in do_show_type()
313 s = modifier_string(mod); in do_show_type()
317 mod = 0; in do_show_type()
337 mod = sym->ctype.modifiers; in do_show_type()
370 mod |= sym->ctype.modifiers; in do_show_type()
375 mod |= sym->ctype.modifiers; in do_show_type()
[all …]
H A Dmemops.c205 unsigned long mod; in simplify_memops() local
208 mod = var->ctype.modifiers; in simplify_memops()
209 if (mod & (MOD_VOLATILE | MOD_NONLOCAL | MOD_STATIC)) in simplify_memops()
/illumos-gate/usr/src/lib/pam_modules/allow/
H A Dallow.c45 debug(pam_handle_t *pamh, int flags, int argc, const char **argv, char *mod) in debug() argument
57 service ? service : "No Service Specified", mod, flags, in debug()
/illumos-gate/usr/src/lib/pam_modules/deny/
H A Ddeny.c45 debug(pam_handle_t *pamh, int flags, int argc, const char **argv, char *mod) in debug() argument
57 service ? service : "No Service Specified", mod, flags, in debug()
/illumos-gate/usr/src/lib/fm/topo/modules/i86pc/chip/
H A Dchip.h51 #define FM_AWARE_SMBIOS(mod) \ argument
52 (topo_mod_getspecific(mod) != NULL && \
53 (*(int *)topo_mod_getspecific(mod) == X86PI_FULL))
/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddca_rsa.c144 if (dca_numcmp(daddr, len, (char *)reqp->dr_ctx.mod, in dca_rsastart()
469 if ((reqp->dr_ctx.mod = kmem_alloc(reqp->dr_ctx.modlen, kmflag)) == in dca_rsainit()
474 bcopy(attrdata, reqp->dr_ctx.mod, reqp->dr_ctx.modlen); in dca_rsainit()
511 modbits = dca_bitlen(reqp->dr_ctx.mod, reqp->dr_ctx.modlen); in dca_rsainit()
583 dca_reverse(reqp->dr_ctx.mod, kaddr, reqp->dr_ctx.modlen, in dca_rsainit()
609 if (reqp->dr_ctx.mod) in dca_rsactxfree()
610 kmem_free(reqp->dr_ctx.mod, reqp->dr_ctx.modlen); in dca_rsactxfree()
614 reqp->dr_ctx.mod = NULL; in dca_rsactxfree()
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_snap.c477 topo_mod_t *mod; in topo_snap_destroy() local
502 mod = nhp->th_enum; in topo_snap_destroy()
503 topo_mod_strfree(mod, nhp->th_name); in topo_snap_destroy()
504 topo_mod_free(mod, nhp->th_nodearr, in topo_snap_destroy()
507 topo_mod_free(mod, nhp, sizeof (topo_nodehash_t)); in topo_snap_destroy()
508 topo_mod_rele(mod); in topo_snap_destroy()
525 mod = tdg->tdg_mod; in topo_snap_destroy()
531 topo_vertex_destroy(mod, tmp); in topo_snap_destroy()
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/common/
H A Dsw_main_cmn.c75 int mod; in sw_recv() local
86 for (mod = 0; mod < msinfo->swms_dispcnt; mod++) { in sw_recv()
90 for (dp = (*msinfo->swms_disptbl)[mod]; in sw_recv()
/illumos-gate/usr/src/uts/intel/dtrace/
H A Dfasttrap_isa.c71 #define FASTTRAP_MODRM(mod, reg, rm) (((mod) << 6) | ((reg) << 3) | (rm)) argument
352 uint_t mod = FASTTRAP_MODRM_MOD(instr[start + 1]); in fasttrap_tracepoint_init() local
364 if (mod == 3) in fasttrap_tracepoint_init()
376 if (mod != 3 && rm == 4) { in fasttrap_tracepoint_init()
386 tp->ftt_base = (mod == 0 && base == 5) ? in fasttrap_tracepoint_init()
391 sz = mod == 1 ? 1 : 4; in fasttrap_tracepoint_init()
399 if (mod == 0 && rm == 5) { in fasttrap_tracepoint_init()
410 sz = mod == 1 ? 1 : mod == 2 ? 4 : 0; in fasttrap_tracepoint_init()
546 uint_t mod = FASTTRAP_MODRM_MOD(instr[rmindex]); in fasttrap_tracepoint_init() local
552 if (mod == 0 && rm == 5) { in fasttrap_tracepoint_init()
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dkernel.c.texi89 module_t *mod;
94 for (i = 0, mod = (module_t *) mbi->mods_addr;
96 i++, mod++)
98 (unsigned) mod->mod_start,
99 (unsigned) mod->mod_end,
100 (char *) mod->string);
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dleaky_subr.c258 struct module mod; in leaky_modctl() local
264 if (mdb_vread(&mod, sizeof (mod), (uintptr_t)m->mod_mp) == -1) { in leaky_modctl()
273 leaky_grep((uintptr_t)mod.data, mod.data_size); in leaky_modctl()
274 leaky_grep((uintptr_t)mod.bss, mod.bss_size); in leaky_modctl()
/illumos-gate/usr/src/uts/common/fs/
H A Dfsflush.c129 int mod; in fsflush_do_pages() local
286 mod = hat_ismod(pp); in fsflush_do_pages()
288 mod = hat_pagesync(pp, in fsflush_do_pages()
291 if (mod) { in fsflush_do_pages()
/illumos-gate/usr/src/cmd/tip/aculib/
H A Dbiz22.c31 biz_dialer(char *num, char *mod) in biz_dialer() argument
47 cbuf[1] = *mod; in biz_dialer()
H A Dbiz31.c33 biz_dialer(char *num, char *mod) in biz_dialer() argument
47 echo(mod); in biz_dialer()
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A D_elfedit.h238 extern const char *elfedit_format_command_usage(elfeditGC_module_t *mod,
248 extern const char *elfedit_optarg_helpstr(elfeditGC_module_t *mod,
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_mdb.c764 fmd_module_t mod; in fmd_module() local
773 if (mdb_vread(&mod, sizeof (mod), addr) != sizeof (mod)) { in fmd_module()
783 if (mdb_readstr(name, sizeof (name), (uintptr_t)mod.mod_name) <= 0) in fmd_module()
784 (void) mdb_snprintf(name, sizeof (name), "<%p>", mod.mod_name); in fmd_module()
787 mod.mod_ops, mod.mod_data, mod.mod_flags, mod.mod_ustat, name); in fmd_module()
795 fmd_module_t mod; in case_walk_init() local
800 if (mdb_vread(&mod, sizeof (mod), wsp->walk_addr) == -1) { in case_walk_init()
805 wsp->walk_addr = (uintptr_t)mod.mod_cases.l_next; in case_walk_init()
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/
H A Dlm_power.c58 u32_t mod = 0 ; in init_nwuf_57710() local
157 mod = offset%8 ; in init_nwuf_57710()
158 if ( ( 0 == mod ) && ( offset!= 0 ) ) in init_nwuf_57710()
192 bit = mod ; in init_nwuf_57710()
198 if( mod != 7 ) in init_nwuf_57710()
/illumos-gate/usr/src/psm/stand/cpr/common/
H A Dsupport.c137 prop->mod, prop->name, prop->value); in cpr_reset_properties()
139 if (prop->mod != PROP_MOD) in cpr_reset_properties()
/illumos-gate/usr/src/cmd/mdb/common/modules/mdb_ks/
H A Dmdb_ks.c810 struct module mod; in a2m_walk_modctl() local
815 if (mdb_vread(&mod, sizeof (mod), (uintptr_t)m->mod_mp) == -1) { in a2m_walk_modctl()
820 if (a2m->a2m_addr >= (uintptr_t)mod.text && in a2m_walk_modctl()
821 a2m->a2m_addr < (uintptr_t)mod.text + mod.text_size) in a2m_walk_modctl()
824 if (a2m->a2m_addr >= (uintptr_t)mod.data && in a2m_walk_modctl()
825 a2m->a2m_addr < (uintptr_t)mod.data + mod.data_size) in a2m_walk_modctl()
/illumos-gate/usr/src/cmd/fm/schemes/
H A DMakefile32 mod \
/illumos-gate/usr/src/cmd/vgrind/
H A Dvgrindefs.src24 model|mod|m:\
32 max min mod new NIL nil noresult not notin od of or procedure public\
44 forward function goto if in label mod nil not of or packed procedure\
57 :kw=and begin decode define end eql eqv geq gtr if leave leq lss mod\
120 loop mod module not of or pointer procedure qualified\
/illumos-gate/usr/src/tools/lintdump/
H A Dlintdump.c76 int i, c, mod; in main() local
122 for (mod = 1; fread(&hdr, sizeof (hdr), 1, fp) == 1; mod++) { in main()
129 if (mod == 1) in main()
/illumos-gate/usr/src/uts/common/sys/fibre-channel/impl/
H A Dfctl_private.h714 static void fctl_post_attach(fc_ulp_module_t *mod, fc_ulp_ports_t *ulp_port,
717 static void fctl_post_detach(fc_ulp_module_t *mod, fc_ulp_ports_t *ulp_port,
740 static void fctl_init_dma_attr(fc_local_port_t *port, fc_ulp_module_t *mod,

12345678910