Searched defs:type (Results 1 - 25 of 56) sorted by relevance

123

/system/core/nexus/
H A DSupplicantEvent.cpp26 SupplicantEvent::SupplicantEvent(int type, int level) { argument
27 mType = type;
H A DProperty.cpp29 int type, int numElements) :
30 mName(name), mReadOnly(readOnly), mType(type),
28 Property(const char *name, bool readOnly, int type, int numElements) argument
/system/core/libcutils/
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_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 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
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) {
/system/core/libnetutils/
H A Ddhcpmsg.c24 static void *init_dhcp_msg(dhcp_msg *msg, int type, void *hwaddr, uint32_t xid) argument
50 *x++ = type;
/system/extras/tests/framebuffer/
H A Dminui.h37 unsigned type; member in struct:event
/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/wlan/ti/wilink_6_1/stad/src/Sta_Management/
H A DmlmeBuilder.c77 dot11MgmtSubType_e type,
103 status = mlmeBuilder_buildFrameCtrl (pHandle, type, (TI_UINT16 *)&pDot11Header->fc, setWepOpt);
138 /* Update packet parameters (start-time, length, pkt-type) */
150 TI_STATUS mlmeBuilder_buildFrameCtrl(mlme_t* pMlme, dot11MgmtSubType_e type, TI_UINT16* pFctrl, TI_UINT8 setWepOpt) argument
154 switch (type)
76 mlmeBuilder_sendFrame(TI_HANDLE hMlme, dot11MgmtSubType_e type, TI_UINT8 *pDataBuff, TI_UINT32 dataLen, TI_UINT8 setWepOpt) argument
/system/core/adb/
H A Dadb_client.c19 void adb_set_transport(transport_type type, const char* serial) argument
21 __adb_transport = type;
/system/vold/
H A Dmain.cpp181 char *type, *label, *mount_point; local
189 if (!(type = strsep(&next, " \t"))) {
190 SLOGE("Error parsing type");
202 if (!strcmp(type, "dev_mount")) {
229 } else if (!strcmp(type, "map_mount")) {
231 SLOGE("Unknown type '%s'", type);
/system/core/init/
H A Dutil.c117 int create_socket(const char *name, int type, mode_t perm, uid_t uid, gid_t gid) argument
122 fd = socket(PF_UNIX, type, 0);
H A Dinit.h24 int create_socket(const char *name, int type, mode_t perm,
98 const char *type; member in struct:socketinfo
/system/core/libdiskconfig/
H A Dconfig_mbr.c31 cfg_pentry(struct pc_partition *pentry, uint8_t status, uint8_t type, argument
46 pentry->type = type;
50 LOGI("Configuring pentry. status=0x%x type=0x%x start_lba=%u len_lba=%u",
51 pentry->status, pentry->type, pentry->start_lba, pentry->len_lba);
114 pinfo->type, *lba, (uint32_t)len_lba);
179 pinfo->type, 1, len);
/system/core/liblog/
H A Dlogd_write.c251 * Like __android_log_bwrite, but takes the type as well. Doesn't work
255 int __android_log_btwrite(int32_t tag, char type, const void *payload, argument
262 vec[1].iov_base = &type;
263 vec[1].iov_len = sizeof(type);
/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/core/toolbox/
H A Dsendevent.c15 __u16 type; member in struct:input_event
57 fprintf(stderr, "use: %s device type code value\n", argv[0]);
71 event.type = atoi(argv[2]);
/system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/AirLink/Measurement/dot11h/
H A DspectrumMngmntMgr.c250 measurement type is valid.
253 type - The measurement type.
258 RETURN: TRUE if type is valid, FALSE otherwise
262 measurement_type_e type,
265 if(type != MSR_TYPE_BASIC_MEASUREMENT)
261 measurementMgr_dot11hIsTypeValid(TI_HANDLE hMeasurementMgr, measurement_type_e type, measurement_scanMode_e scanMode) argument
/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/bluetooth/tools/
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/core/fastboot/
H A Dusb_linux.c80 static int check(void *_desc, int len, unsigned type, int size) argument
87 if(desc[1] != type) return -1;
/system/core/include/diskconfig/
H A Ddiskconfig.h66 uint8_t type; /* byte 4 */ member in struct:pc_partition
83 uint8_t type; member in struct:part_info

Completed in 471 milliseconds

123