Searched refs:type (Results 1 - 25 of 126) sorted by relevance

123456

/system/core/nexus/
H A DSupplicantEvent.cpp26 SupplicantEvent::SupplicantEvent(int type, int level) { argument
27 mType = type;
H A DSupplicantEvent.h47 SupplicantEvent(int type, int level);
/system/core/sh/
H A Dnodes.h35 int type; member in struct:nbinary
42 int type; member in struct:ncmd
50 int type; member in struct:npipe
57 int type; member in struct:nredir
64 int type; member in struct:nif
72 int type; member in struct:nfor
80 int type; member in struct:ncase
87 int type; member in struct:nclist
95 int type; member in struct:narg
103 int type; member in struct:nfile
112 int type; member in struct:ndup
121 int type; member in struct:nhere
129 int type; member in struct:nnot
135 int type; member in union:node
[all...]
/system/bluetooth/tools/
H A Dsocktest.c52 int type; member in struct:thread_args
84 static int _socket(int type) { argument
90 switch (type) {
126 static int _close(int fd, int type) { argument
137 static int _bind(int fd, int type) { argument
142 switch (type) {
174 static int _listen(int fd, int type) { argument
198 static int _accept(int fd, int type) { argument
203 switch (type) {
251 static int _connect(int fd, int type) { argument
288 _write(int fd, int type) argument
412 do_accept_accept_accept(int type) argument
432 do_accept_and_close(int type) argument
457 do_accept_shutdown(int type) argument
485 do_connect_shutdown(int type) argument
509 do_connectnb_shutdown(int type) argument
540 do_connectnb_close(int type) argument
568 do_accept_close_write(int type) argument
593 do_poll_poll_poll_shutdown(int type) argument
616 do_poll_poll_poll_close(int type) argument
637 do_read_read_read_close(int type) argument
658 do_read_read_read_shutdown(int type) argument
681 do_connected_read1_shutdown1(int type) argument
715 do_accept_connect_connect(int type) argument
765 enum sock_type type; member in struct:__anon12
791 int type = -1; local
[all...]
H A Dasocket_test.c53 int type; member in struct:thread_args
85 static int _socket(int type) { argument
91 switch (type) {
127 static int _close(int fd, int type) { argument
138 static int _bind(int fd, int type) { argument
143 switch (type) {
175 static int _listen(int fd, int type) { argument
199 static int _accept(int fd, int type) { argument
204 switch (type) {
238 static int _connect(int fd, int type) { argument
274 _write(int fd, int type) argument
398 do_accept_accept_accept(int type) argument
418 do_accept_and_close(int type) argument
443 do_accept_shutdown(int type) argument
471 do_connect_shutdown(int type) argument
496 do_accept_close_write(int type) argument
521 do_poll_poll_poll_shutdown(int type) argument
544 do_poll_poll_poll_close(int type) argument
565 do_read_read_read_close(int type) argument
586 do_read_read_read_shutdown(int type) argument
609 do_connected_read1_shutdown1(int type) argument
643 do_accept_connect_connect(int type) argument
691 enum sock_type type; member in struct:__anon6
717 int type = -1; local
[all...]
H A Dsock_shutdown_test.c51 int type; member in struct:thread_args
67 static int _socket(int type) { argument
73 switch (type) {
120 static int _bind(int fd, int type) { argument
125 switch (type) {
157 static int _listen(int fd, int type) { argument
168 static int _accept(int fd, int type) { argument
173 switch (type) {
221 _accept(args->fd, args->type);
225 static int do_accept_shutdown(int type) { argument
263 enum sock_type type; member in struct:__anon10
289 int type = -1; local
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/inc/
H A DmlmeBuilder.h75 dot11MgmtSubType_e type,
81 dot11MgmtSubType_e type,
/system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
H A DmlmeBuilder.h74 dot11MgmtSubType_e type,
80 dot11MgmtSubType_e type,
/system/core/include/cutils/
H A Dsockets.h86 extern int socket_loopback_client(int port, int type);
87 extern int socket_network_client(const char *host, int port, int type);
88 extern int socket_loopback_server(int port, int type);
89 extern int socket_local_server(const char *name, int namespaceId, int type);
92 const char *name, int namespaceId, int type);
93 extern int socket_local_client(const char *name, int namespaceId, int type);
94 extern int socket_inaddr_any_server(int port, int type);
H A Dlogd.h42 int __android_log_btwrite(int32_t tag, char type, const void *payload,
/system/core/libcutils/
H A Dprivate.h149 Please use a compiler that supports a 64-bit integer type (or wider);
267 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
271 #define TYPE_SIGNED(type) (((type) -1) < 0)
280 #define TYPE_INTEGRAL(type) (((type) 0.5) != 0.5)
286 ** Subtract one for the sign bit if the type is signed;
288 ** add one more for a minus sign if the type is signed.
290 #define INT_STRLEN_MAXIMUM(type) \
[all...]
H A Dsocket_inaddr_any_server.c36 int socket_inaddr_any_server(int port, int type) argument
47 s = socket(AF_INET, type, 0);
58 if (type == SOCK_STREAM) {
H A Dsocket_loopback_server.c36 int socket_loopback_server(int port, int type) argument
47 s = socket(AF_INET, type, 0);
58 if (type == SOCK_STREAM) {
H A Datomic-android-armv6.S22 .type android_atomic_write, %function
25 .type android_atomic_inc, %function
27 .type android_atomic_dec, %function
30 .type android_atomic_add, %function
32 .type android_atomic_and, %function
34 .type android_atomic_or, %function
37 .type android_atomic_swap, %function
40 .type android_atomic_cmpxchg, %function
H A Dsocket_local_server.c28 int socket_local_server(const char *name, int namespaceId, int type) argument
95 int socket_local_server(const char *name, int namespace, int type) argument
100 s = socket(AF_LOCAL, type, 0);
110 if (type == SOCK_STREAM) {
H A Dsocket_loopback_client.c33 /* Connect to port on the loopback IP interface. type is
37 int socket_loopback_client(int port, int type) argument
48 s = socket(AF_INET, type, 0);
H A Dsocket_network_client.c35 /* Connect to port on the IP interface. type is
39 int socket_network_client(const char *host, int port, int type) argument
54 s = socket(hp->h_addrtype, type, 0);
H A Dsocket_local_client.c27 int socket_local_client(const char *name, int namespaceId, int type) argument
125 int type)
152 int socket_local_client(const char *name, int namespaceId, int type) argument
156 s = socket(AF_LOCAL, type, 0);
159 if ( 0 > socket_local_client_connect(s, name, namespaceId, type)) {
124 socket_local_client_connect(int fd, const char *name, int namespaceId, int type) argument
/system/core/adb/
H A Dadb_client.h26 void adb_set_transport(transport_type type, const char* serial);
/system/core/libpixelflinger/
H A Draster.h28 void gglCopyPixels(void* c, GGLint x, GGLint y, GGLsizei width, GGLsizei height, GGLenum type);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/
H A DmlmeBuilder.c87 dot11MgmtSubType_e type,
118 status = mlmeBuilder_buildFrameCtrl(pHandle, type, (UINT16 *)&pFrame->hdr.fc, setWepOpt);
169 if (type == DIS_ASSOC)
175 if (type == DE_AUTH)
183 TI_STATUS mlmeBuilder_buildFrameCtrl(mlme_t* pMlme, dot11MgmtSubType_e type, UINT16* pFctrl, UINT8 setWepOpt) argument
187 switch (type)
86 mlmeBuilder_sendFrame(TI_HANDLE hMlme, dot11MgmtSubType_e type, UINT8 *pDataBuff, UINT32 dataLen, UINT8 setWepOpt) argument
/system/core/debuggerd/
H A Dcrashglue.S2 .type crash1, %function
4 .type crashnostack, %function
/system/core/libpixelflinger/codeflinger/
H A DARMAssemblerInterface.cpp88 uint32_t ARMAssemblerInterface::reg_imm(int Rm, int type, uint32_t shift) argument
90 return ((shift&0x1F)<<7) | ((type&0x3)<<5) | (Rm&0xF);
98 uint32_t ARMAssemblerInterface::reg_reg(int Rm, int type, int Rs) argument
100 return ((Rs&0xF)<<8) | ((type&0x3)<<5) | (1<<4) | (Rm&0xF);
123 uint32_t ARMAssemblerInterface::reg_scale_pre(int Rm, int type, argument
128 reg_imm(abs(Rm), type, shift);
131 uint32_t ARMAssemblerInterface::reg_scale_post(int Rm, int type, uint32_t shift) argument
133 return (1<<25) | (((uint32_t(Rm)>>31)^1)<<23) | reg_imm(abs(Rm), type, shift);
/system/wlan/ti/wilink_6_1/stad/Export_Inc/
H A DEthernet.h49 TI_UINT16 type; member in struct:__anon1481
63 TI_UINT16 type; member in struct:__anon1482
/system/extras/tests/framebuffer/
H A Dminui.h37 unsigned type; member in struct:event

Completed in 331 milliseconds

123456