Searched defs:type (Results 126 - 150 of 2141) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libast/sparcv9/include/ast/
H A Dmagicid.h50 char type[12]; /* specific data type */ member in struct:Magicid_s
H A Dmnt.h49 char* type; /* filesystem type */ member in struct:__anon2738
/illumos-gate/usr/src/uts/sun4/os/
H A Dbus_func.c43 bus_func_register(int type, busfunc_t func, void *arg) argument
47 bfd->bf_type = type;
59 * exactly matches the specified (type, func, arg) tuple. We expect this
63 bus_func_unregister(int type, busfunc_t func, void *arg) argument
71 if (bfd->bf_type == type && bfd->bf_func == func &&
86 * Invoke the registered bus functions of the specified type. We return the
93 bus_func_invoke(int type) argument
101 if (bfd->bf_type == type) {
/illumos-gate/usr/src/uts/intel/io/
H A Dpolled_io.c203 polled_io_console_type_t type,
207 switch (type) {
229 (void) polled_io_take_console(type, 0);
260 polled_io_console_type_t type,
264 switch (type) {
270 (void) polled_io_release_console(type, 0);
317 polled_io_console_type_t type,
321 switch (type) {
346 polled_io_console_type_t type,
201 polled_io_register( cons_polledio_t *polled_io, polled_io_console_type_t type, int flags ) argument
259 polled_io_unregister( polled_io_console_type_t type, int flags ) argument
316 polled_io_take_console( polled_io_console_type_t type, int flags ) argument
345 polled_io_release_console( polled_io_console_type_t type, int flags ) argument
/illumos-gate/usr/src/uts/intel/io/agpgart/
H A Dagp_kstat.c17 * The values of type agp_arc_type_t are used as indices into arc_name
96 int type; local
113 type = KSTAT_DATA_UINT64;
117 type = KSTAT_DATA_CHAR;
120 type = KSTAT_DATA_UINT32;
124 kstat_named_init(knp, np, type);
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Ddisptab.c284 dispatchName(int type) argument
286 if (type <= 0 || type > LAST_MESSAGE)
287 type = 0;
288 return (dispatch_names[type]);
304 dispatch(int type, char *m, MESG *md) argument
306 register DISPATCH *pd = &dispatch_table[type];
309 dispatchName(type), m, md);
311 if (type <= 0 || type >
340 r_H(MESG *md, int type) argument
346 r_HS(MESG *md, int type) argument
[all...]
/illumos-gate/usr/src/cmd/lp/lib/msgs/
H A Dmgetputm.c62 int mgetm ( MESG * md, int type, ... ) argument
64 int mgetm (md, type, va_alist)
66 int type;
75 va_start(vp, type);
99 ret = _getmessage(MBG, type, vp);
107 int mputm ( MESG * md, int type, ... ) argument
109 int mputm (md, type, va_alist)
111 int type;
119 va_start(vp, type);
123 needsize = _putmessage(NULL, type, v
[all...]
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_xattr.c80 data_type_t type; local
87 * Validate the name and type of each attribute.
91 type = nvpair_type(pair);
97 * Verify nvlist type matches required type and view is OK
100 if (type != attr_to_data_type(attr) ||
113 switch (type) {
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_nvram.c40 sfxge_nvram_rw(sfxge_t *sp, sfxge_nvram_ioc_t *snip, efx_nvram_type_t type, argument
51 if ((rc = efx_nvram_rw_start(enp, type, &chunk_size)) != 0)
59 if ((rc = op(enp, type, snip->sni_offset + off, buf, len)) != 0)
66 efx_nvram_rw_finish(enp, type);
71 efx_nvram_rw_finish(enp, type);
79 sfxge_nvram_erase(sfxge_t *sp, sfxge_nvram_ioc_t *snip, efx_nvram_type_t type) argument
86 if ((rc = efx_nvram_rw_start(enp, type, &chunk_size)) != 0)
89 if ((rc = efx_nvram_erase(enp, type)) != 0)
92 efx_nvram_rw_finish(enp, type);
97 efx_nvram_rw_finish(enp, type);
107 efx_nvram_type_t type; local
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelGlobal.h41 CK_MECHANISM_TYPE type; member in struct:kmh_elem
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftKeystore.h61 uint64_t type; member in struct:ks_attr_hdr
117 CK_RV soft_get_token_objects_from_keystore(ks_search_type_t type);
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dapiutil.c325 logit(int type, char *fmt, ...) argument
332 if (type <= logging) {
336 syslog(type, buffer);
/illumos-gate/usr/src/lib/print/libipp-core/common/
H A Dipp_types.c202 max_val_len(int8_t type, char *name) argument
207 switch (type) {
241 min_val_len(int8_t type, char *name) argument
246 switch (type) {
/illumos-gate/usr/src/lib/fm/topo/modules/common/ipmi/
H A Dipmi_methods.c63 store_prop_val(topo_mod_t *mod, void *buf, char *propname, topo_type_t type, argument
76 if (nvlist_add_uint32(*out, TOPO_PROP_VAL_TYPE, type)
83 if (type == TOPO_TYPE_STRING) {
91 } else if (type == TOPO_TYPE_FMRI) {
99 } else if (type == TOPO_TYPE_UINT32) {
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/
H A Drc-int.h47 char *type; member in struct:_krb5_rc_ops
/illumos-gate/usr/src/lib/libshare/smb/
H A Dlibshare_smb.h57 int type; member in struct:option_defs
63 * Sharectl property refresh types. Bit mask to indicate which type(s)
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Dinuse_zpool.c68 inuse_zpool_common(char *slice, nvlist_t *attrs, int *errp, char *type) argument
99 if (strcmp(type, DM_USE_ACTIVE_ZPOOL) == 0) {
104 type = DM_USE_SPARE_ZPOOL;
107 type = DM_USE_L2CACHE_ZPOOL;
115 type, errp);
/illumos-gate/usr/src/lib/libfruutils/
H A Dfru_tag.c77 mk_tag(fru_tagtype_t type, uint32_t dense, size_t pl_len, argument
85 switch (type) {
91 tag->a.type = FRU_A_ID;
100 tag->b.type = FRU_B_ID;
109 tag->c.type = FRU_C_ID;
118 tag->d.type = FRU_D_ID;
127 tag->e.type = FRU_E_ID;
136 tag->f.type = FRU_F_ID;
145 tag->g.type = FRU_G_ID;
154 return (get_tag_size(type));
[all...]
/illumos-gate/usr/src/lib/libumem/common/
H A Dumem_fail.c44 firstexit(int type) argument
54 umem_exiting = type;
/illumos-gate/usr/src/lib/libxcurses/src/libc/gen/
H A Dbase.c63 * - deal with general case, returning prefix or suffix based on type
66 basedir(char *arg, int type) argument
72 (type==DIRNAME && arg[1]=='.' && arg[2]=='\0'))))
94 if (type==DIRNAME && path!=arg) {
98 return (type==DIRNAME)?curdir:path;
99 else if (cp == path && type == DIRNAME) {
104 else if (type == BASENAME)
/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dt_getname.c52 static int __tx_getname_locked(int fd, struct netbuf *name, int type);
55 _tx_getname(int fd, struct netbuf *name, int type, int api_semantics) argument
61 if (!name || ((type != LOCALNAME) && (type != REMOTENAME))) {
70 retval = __tx_getname_locked(fd, name, type);
86 __tx_getname_locked(int fd, struct netbuf *name, int type) argument
92 (type == LOCALNAME) ? TI_GETMYNAME : TI_GETPEERNAME, name);
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgethostbyname_r.c73 _switch_gethostbyaddr_r(const char *addr, int length, int type,
86 _uncached_gethostbyaddr_r(const char *addr, int length, int type, argument
89 return (_switch_gethostbyaddr_r(addr, length, type,
100 gethostbyaddr_r(const char *addr, int length, int type,
147 gethostbyaddr_r(const char *addr, int length, int type, argument
158 if (type != AF_INET) {
172 nssin.arg.nss.host.type = type;
/illumos-gate/usr/src/lib/libpp/common/
H A Dppmisc.c130 * the first non-space/paren argument token type is returned
133 * predicate <identifier> type=T_ID
134 * predicate ( <identifier> ) type=T_ID
135 * predicate ( ) type=0
136 * predicate ( <balanced-paren-list> ) type=T_STRING
137 * otherwise type=<other>
145 register int type; local
150 switch (type = pplex())
153 type = 0;
169 type
[all...]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dppriv.c41 setppriv(priv_op_t op, priv_ptype_t type, const priv_set_t *pset) argument
48 set = priv_getsetbyname(type);
55 getppriv(priv_ptype_t type, priv_set_t *pset) argument
62 set = priv_getsetbyname(type);
/illumos-gate/usr/src/lib/libcmd/common/
H A Dwc.h44 char type[1<<CHAR_BIT]; member in struct:__anon3094

Completed in 146 milliseconds

1234567891011>>