Searched defs:type (Results 101 - 125 of 2141) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/tnf/prex/
H A Dspec.h60 spec_type_t type; member in struct:spec
80 spec_t * spec(char *str_p, spec_type_t type);
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_rwlock.c236 smbfs_rw_init(smbfs_rwlock_t *l, char *name, krw_type_t type, void *arg) argument
/illumos-gate/usr/src/ucblib/librpcsoc/
H A Drtime.c87 int type; local
90 type = SOCK_STREAM;
92 type = SOCK_DGRAM;
94 s = _socket(AF_INET, type, 0);
100 if (type == SOCK_DGRAM) {
/illumos-gate/usr/src/lib/sun_fc/common/
H A DAdapterDeviceEvent.h38 * event of this type will be sent to registered
49 wwn(myWwn), type(myType), affectedID(myID) { }
51 EVENT_TYPE getType() { return (type); }
57 EVENT_TYPE type; member in class:AdapterDeviceEvent
H A DAdapterEvent.h39 * event of this type will be sent to registered
51 wwn(myWwn), type(myType) { }
53 EVENT_TYPE getType() { return (type); }
57 EVENT_TYPE type; member in class:AdapterEvent
H A DAdapterPortStatEvent.h39 * event of this type will be sent to registered
49 wwn(myWwn), type(myType) { }
51 EVENT_TYPE getType() { return (type); }
55 EVENT_TYPE type; member in class:AdapterPortStatEvent
H A DSun_fcSendLIRR.cc42 * @param type ???
50 HBA_UINT8 type,
59 port->sendLIRR(0, function, type, pRspBuffer, pRspBufferSize);
61 port->sendLIRR(wwnConversion(destWWN.wwn), function, type, local
46 Sun_fcSendLIRR(HBA_HANDLE handle, HBA_WWN hbaPortWWN, HBA_WWN destWWN, HBA_UINT8 function, HBA_UINT8 type, void *pRspBuffer, HBA_UINT32 *pRspBufferSize) argument
H A DSun_fcSendRNID.cc42 HBA_WWNTYPE type, void *responseBuffer, HBA_UINT32 *length) {
41 Sun_fcSendRNID(HBA_HANDLE handle, HBA_WWN wwn, HBA_WWNTYPE type, void *responseBuffer, HBA_UINT32 *length) argument
H A DTargetEvent.h39 * event of this type will be sent to registered
52 hbaWWN(myHBAPortWWN), targetWWN(myTargetPortWWN), type(myType) { }
55 EVENT_TYPE getType() { return (type); }
60 EVENT_TYPE type; member in class:TargetEvent
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibmf/
H A Dibmf_timers.c40 ibmf_timer_t type)
50 tnf_opaque, msgimplp, msgimplp, tnf_opaque, timer_type, type,
53 if (type == IBMF_RESP_TIMER) {
77 } else if (type == IBMF_TRANS_TIMER) {
151 ibmf_i_unset_timer(ibmf_msg_impl_t *msgimplp, ibmf_timer_t type) argument
159 if (type == IBMF_RESP_TIMER) {
165 } else if (type == IBMF_TRANS_TIMER) {
39 ibmf_i_set_timer(void (*func)(void *), ibmf_msg_impl_t *msgimplp, ibmf_timer_t type) argument
/illumos-gate/usr/src/uts/common/io/ppp/sppp/
H A Ds_common.c45 putctl4(queue_t *q, uchar_t type, uchar_t code, uint16_t val) argument
52 MTYPE(mp) = type;
68 putctl8(queue_t *q, uchar_t type, uchar_t code, uint32_t val) argument
75 MTYPE(mp) = type;
/illumos-gate/usr/src/lib/libast/amd64/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:__anon2594
/illumos-gate/usr/src/lib/libast/common/cdt/
H A Ddtdisc.c52 Dtdisc_t* dtdisc(Dt_t* dt, Dtdisc_t* disc, int type) argument
54 Dtdisc_t* dtdisc(dt,disc,type)
57 int type;
86 if(dt->data->type&(DT_STACK|DT_QUEUE|DT_LIST))
88 else if(dt->data->type&DT_BAG)
89 { if(type&DT_SAMEHASH)
93 else if(dt->data->type&(DT_SET|DT_BAG))
94 { if((type&DT_SAMEHASH) && (type&DT_SAMECMP))
98 else /*if(dt->data->type
[all...]
/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/include/
H A Dmnt.h40 char* type; /* filesystem type */ member in struct:__anon2630
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfexcept.c29 int _sfexcept(Sfio_t* f, int type, ssize_t io, Sfdisc_t* disc) argument
31 int _sfexcept(f,type,io,disc)
33 int type; /* io type that was performed */
58 ev = (*(disc->exceptf))(f,type,&io,disc);
73 { if(type == SF_READ)
75 else if(type != SF_WRITE && type != SF_SEEK)
112 ((type == SF_READ && f->next >= f->endb) ||
113 (type
[all...]
H A Dsfgetr.c31 char* sfgetr(Sfio_t *f, int rc, int type) argument
33 char* sfgetr(f,rc,type)
36 int type;
58 type = type < 0 ? SF_LASTR : type == 1 ? SF_STRING : type;
60 if(type&SF_LASTR) /* return the broken record */
108 (!(type&SF_STRING) || !(f->flags&SF_STRING) ||
149 if(found && rc != 0 && (type
[all...]
H A Dsfraise.c30 static int _sfraiseall(int type, Void_t* data) argument
32 static int _sfraiseall(type, data)
33 int type; /* type of event */
49 if(sfraise(f, type, data) < 0)
57 int sfraise(Sfio_t* f, int type, Void_t* data) argument
59 int sfraise(f, type, data)
61 int type; /* type of event */
70 return _sfraiseall(type,dat
[all...]
H A Dsfreserve.c30 Void_t* sfreserve(Sfio_t* f, ssize_t size, int type) argument
32 Void_t* sfreserve(f,size,type)
35 int type; /* LOCKR: lock stream, LASTR: last record */
49 if(type < 0)
51 else if((mode = type&SF_WRITE) )
52 type &= ~SF_WRITE;
55 if(type == SF_LASTR )
73 if(type > 0)
74 { if(type == 1 ) /* upward compatibility mode */
75 type
[all...]
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/lib/libast/i386/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:__anon2694
/illumos-gate/usr/src/lib/libast/sparc/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:__anon2716

Completed in 100 milliseconds

1234567891011>>