Searched refs:type (Results 226 - 250 of 3417) 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
/illumos-gate/usr/src/uts/intel/syscall/
H A Dinstall_utrap.c35 install_utrap(utrap_entry_t type, argument
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dpthr_rwlock.c100 * pshared attr into type argument and calls rwlock_init().
107 int type; local
110 type = PTHREAD_PROCESS_PRIVATE;
112 type = ap->pshared;
116 return (rwlock_init((rwlock_t *)rwlock, type, NULL));
/illumos-gate/usr/src/boot/lib/libz/
H A Dinftrees.h60 int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
/illumos-gate/usr/src/boot/sys/boot/i386/common/
H A Ddrv.h34 unsigned int type; member in struct:dsk
/illumos-gate/usr/src/lib/libcontract/common/
H A Dlibcontract_priv.c84 contract_open(ctid_t ctid, const char *type, const char *file, int oflag) argument
91 if (type == NULL)
92 type = "all";
94 n = snprintf(path, PATH_MAX, CTFS_ROOT "/%s/%ld/%s", type, ctid, file);
146 ct_typeid_t type; local
149 type = info->event.ctev_cttype;
150 types[type].type_event(file, hdl, verbose);
/illumos-gate/usr/src/lib/libsocket/socket/
H A D_soutil.c50 static struct netconfig *_s_match_netconf(int family, int type, int proto,
117 * Lookup family/type/protocol in /etc/netconfig.
122 _s_netconfig_path(int family, int type, int protocol, argument
129 net = _s_match_netconf(family, type, protocol, &nethandle);
176 _s_match_netconf(int family, int type, int proto, void **nethandle) argument
217 semantics == type &&
222 type == SOCK_RAW &&
231 semantics == type) {
/illumos-gate/usr/src/lib/libcmd/common/
H A Dwclib.c75 wp->type[n] = (w && isspace(n)) ? WC_SP : 0;
76 wp->type['\n'] = WC_SP|WC_NL;
81 wp->type[0x80+n] |= WC_MB;
83 wp->type[0xc0+n] |= WC_MB+1;
85 wp->type[0xc0+n] |= WC_MB+2;
87 wp->type[0xc0+n] |= WC_MB+3;
89 wp->type[0xc0+n] |= WC_MB+4;
91 wp->type[0xc0+n] |= WC_MB+5;
93 wp->type[0xc0] = WC_MB|WC_ERR;
94 wp->type[
164 register char* type = wp->type; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_mip.h43 uchar_t type; member in struct:__anon303
49 uint8_t type; member in struct:__anon304
87 uchar_t type; /* must be REG_TYPE_REQ */ member in struct:registration_request_str
109 uchar_t type; /* must be REG_TYPE_REQ */ member in struct:registration_request_str
133 uchar_t type; /* must be REG_TYPE_REP */ member in struct:registration_reply_str
284 uchar_t type; member in struct:mobility_agt_adv_extension
305 uchar_t type; member in struct:mobility_agt_adv_extension
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_tblout.c150 proc->args.decls->decl.type);
162 printit(char *prefix, char *type) argument
168 if (streq(type, "oneway"))
171 len = fprintf(fout, "\t(xdrproc_t)xdr_%s,", stringfix(type));
182 if (streq(type, "void") || streq(type, "oneway")) {
187 ptype(prefix, type, 0);
/illumos-gate/usr/src/cmd/acctadm/
H A Daconf.c72 aconf_init(acctconf_t *acp, int type) argument
81 if (acctctl(type | AC_STATE_GET, &acp->state,
84 ac_type_name(type));
87 if (acctctl(type | AC_FILE_GET, acp->file, sizeof (acp->file)) == -1) {
93 ac_type_name(type));
96 if (acctctl(type | AC_RES_GET, buf, AC_BUFSIZE) == -1)
99 tracked = buf2str(buf, AC_BUFSIZE, AC_ON, type);
100 untracked = buf2str(buf, AC_BUFSIZE, AC_OFF, type);
111 * the repository, such as missing properties or properties of the wrong type,
126 int type; local
248 aconf_print_type(acctconf_t *acp, FILE *fp, int type) argument
392 aconf_type2fmri(int type) argument
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/
H A Dcontext.h38 /* allocate a free context by type
41 lm_status_t lm_allocate_cid(struct _lm_device_t *pdev, u32_t type, void * cookie, s32_t * cid);
60 void lm_free_cid(struct _lm_device_t *pdev, u32_t type, u32_t cid, u8_t notify_fw);
76 void * lm_cid_cookie(struct _lm_device_t *pdev, u32_t type, u32_t cid);
90 lm_status_t lm_set_cid_resc(struct _lm_device_t *pdev, u32_t type, void *cookie, u32_t cid);
92 lm_status_t lm_free_cid_resc(struct _lm_device_t *pdev, u32_t type, u32_t cid, u8_t notify_fw);
120 void lm_cid_recycled_cb_register(struct _lm_device_t *pdev, u8_t type, lm_cid_recycled_cb_t cb);
122 void lm_cid_recycled_cb_deregister(struct _lm_device_t *pdev, u8_t type);
/illumos-gate/usr/src/uts/common/xen/public/arch-x86/
H A Dxen.h34 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
35 typedef struct { type *p; } __guest_handle_ ## name
37 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
38 typedef type * __guest_handle_ ## name
41 #define __DEFINE_XEN_GUEST_HANDLE(name, type) \
42 ___DEFINE_XEN_GUEST_HANDLE(name, type); \
43 ___DEFINE_XEN_GUEST_HANDLE(const_##name, const type)
/illumos-gate/usr/src/uts/common/io/xge/hal/include/
H A Dxge-list.h165 * @type: the type of the container struct this is embedded in.
170 #define xge_container_of(ptr, type, member) ({ \
171 __typeof( ((type *)0)->member ) *__mptr = (ptr); \
172 (type *)(void *)( (char *)__mptr - ((size_t) &((type *)0)->member) );})
174 /* type unsafe version */
175 #define xge_container_of(ptr, type, member) \
176 ((type*)(void*)((char*)(ptr) - ((size_t) &((type *)
[all...]
/illumos-gate/usr/src/lib/libast/common/cdt/
H A Ddthash.c27 ** type: type of search
100 static Void_t* dthash(Dt_t* dt, reg Void_t* obj, int type) argument
102 static Void_t* dthash(dt,obj,type)
105 int type;
120 dt->type &= ~DT_FOUND;
123 { if(type&(DT_NEXT|DT_PREV))
126 if(dt->data->size <= 0 || !(type&(DT_CLEAR|DT_FIRST|DT_LAST)) )
130 if(type&DT_CLEAR)
154 t = (type
[all...]
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dfake_shdr.c278 * SINFO type. SINFO is used to track the sections that can only
286 SINFO_TYPE type; /* Our type code for the section */ member in struct:__anon1430
314 * fields are set to NULL, and the type is set to SINFO_T_NULL.
331 sinfo->type = SINFO_T_NULL;
567 * xlate_type - An ELF xlate type, specifying the type of data
767 * an offset to the next auxiliary block. By breaking the type specific
794 * Set up the function pointers to the type-specific code
797 if (sec->type
[all...]
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Dpdevinfo_sun4v.c153 char *type; local
182 type = get_node_type(pnode);
188 if (type != NULL)
189 printf("type=%s ", type);
194 if (type == NULL)
195 type = "";
201 printf("ADDED BOARD name=%s type=%s compatible=%s\n",
202 name, type, compatible);
204 } else if (strcmp(type, "cp
[all...]
/illumos-gate/usr/src/boot/sys/sys/
H A Dqueue.h152 #define QUEUE_TYPEOF(type) type
154 #define QUEUE_TYPEOF(type) struct type
160 #define SLIST_HEAD(name, type) \
162 struct type *slh_first; /* first element */ \
165 #define SLIST_CLASS_HEAD(name, type) \
167 class type *slh_first; /* first element */ \
173 #define SLIST_ENTRY(type) \
175 struct type *sle_nex
[all...]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dmbtranslate.c134 int type, width; local
137 type = TYPE(*byte & 0377);
138 width = cswidth[type];
139 if (type == 1 || type == 2)
/illumos-gate/usr/src/cmd/nscd/
H A Dgettnrhdb.c66 argp->key.hostaddr.type);
77 if (e1->key.hostaddr.type > e2->key.hostaddr.type)
79 else if (e1->key.hostaddr.type < e2->key.hostaddr.type)
/illumos-gate/usr/src/uts/common/io/drm/
H A Ddrm_io32.h58 drm_map_type_t type; member in struct:drm_map_32
78 drm_stat_type_t type; member in struct:drm_stats_32::__anon5307
131 uint32_t type; /* Type of memory to allocate */ member in struct:drm_agp_buffer32
163 drm_vblank_seq_type_t type; member in struct:drm_wait_vblank_request_32
168 drm_vblank_seq_type_t type; member in struct:drm_wait_vblank_reply_32
175 * DRM_IOCTL_WAIT_VBLANK ioctl argument type.
/illumos-gate/usr/src/lib/libast/common/disc/
H A Dsfdctee.c61 static int teeexcept(Sfio_t* f, int type, Void_t* data, Sfdisc_t* disc) argument
63 static int teeexcept(f,type,data,disc)
65 int type;
70 if(type == SF_FINAL || type == SF_DPOP)
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfseek.c52 Sfoff_t sfseek(Sfio_t* f, Sfoff_t p, int type) argument
54 Sfoff_t sfseek(f,p,type)
57 int type; /* 0: from org, 1: from here, 2: from end */
68 hardseek = (type|f->flags)&(SF_SHARE|SF_PUBLIC);
89 mustsync = (type&SF_SHARE) && !(type&SF_PUBLIC) &&
93 if((type &= (SEEK_SET|SEEK_CUR|SEEK_END)) != SEEK_SET &&
94 type != SEEK_CUR && type != SEEK_END )
118 if(type
[all...]
/illumos-gate/usr/src/cmd/lp/lib/msgs/
H A Dstreamio.c106 short type; local
108 if (md->type == MD_USR_FIFO)
132 if ((type = stoh(msgbuf + HEAD_TYPE)) < 0 || LAST_MESSAGE < type)
138 while (type == I_QUEUE_CHK);
/illumos-gate/usr/src/lib/libm/common/m9x/
H A D__fex_i386.c235 * Determine which type of invalid operation exception occurred
373 /* determine the type of operation */
566 * exceptions, and set a code indicating the type of operation
577 /* get the exception type, status word, opcode, and data address */
594 info->op2.type = fex_nodata;
602 info->op1.type = info->op2.type = info->res.type = fex_nodata;
606 info->op1.type = fex_float;
608 info->res.type
[all...]

Completed in 1055 milliseconds

1234567891011>>