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

123

/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/core/fs_mgr/
H A Dfs_mgr_priv.h31 char *type; member in struct:fstab_rec
/system/core/libnl_2/
H A Dhandlers.c57 int nl_cb_set(struct nl_cb *cb, enum nl_cb_type type, enum nl_cb_kind kind, \ argument
60 cb->cb_set[type] = func;
61 cb->cb_args[type] = arg;
H A Dattr.c132 int type = nla_type(pos); local
134 if ((type <= maxtype) && (type != 0))
135 tb[type] = pos;
191 * to the message msg nested in a container of the type attrtype. The
203 /* Return type of the attribute. */
210 * in the attribute header (type,length). Return NULL if insufficient space */
/system/extras/tests/framebuffer/
H A Dminui.h37 unsigned type; member in struct:event
/system/extras/fatblock/
H A Dfatblock.h38 extent_type type; member in struct:extent
/system/vold/
H A DVolumeManager.h37 , type(_type)
48 container_type_t type; member in class:ContainerData
H A Dmain.cpp173 char *type, *label, *mount_point, *mount_flags, *sysfs_path; local
182 if (!(type = strtok_r(line, delim, &save_ptr))) {
183 SLOGE("Error parsing type");
195 if (!strcmp(type, "dev_mount")) {
236 } else if (!strcmp(type, "map_mount")) {
238 SLOGE("Unknown type '%s'", type);
/system/core/adb/
H A Dadb_client.c21 void adb_set_transport(transport_type type, const char* serial) argument
23 __adb_transport = type;
/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 ALOGI("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.c264 * Like __android_log_bwrite, but takes the type as well. Doesn't work
268 int __android_log_btwrite(int32_t tag, char type, const void *payload, argument
275 vec[1].iov_base = &type;
276 vec[1].iov_len = sizeof(type);
/system/core/toolbox/
H A Dlsof.c71 void print_type(char *type, struct pid_info_t* info) argument
76 strncat(info->path, type, sizeof(info->path));
91 info->cmdline, info->pid, info->user, type,
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/media/camera/include/system/
H A Dcamera_metadata.h64 // Number of type fields
78 * number of entries in data of the entry's type, not a count of bytes.
83 uint8_t type; member in struct:camera_metadata_entry
102 uint8_t type; member in struct:camera_metadata_ro_entry
115 * Size in bytes of each entry type
121 * Human-readable name of each entry type
133 * an integer tag to identify its meaning, 'type' and 'count' field, and the
134 * data, which contains a 'count' number of entries of type 'type'. The packet
275 * up. That is, if entry of 'type' wit
[all...]
/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:__anon266
289 int type = -1; local
[all...]
/system/core/fastboot/
H A Dusb_linux.c86 static int check(void *_desc, int len, unsigned type, int size) argument
93 if(desc[1] != type) return -1;
/system/core/include/diskconfig/
H A Ddiskconfig.h67 uint8_t type; /* byte 4 */ member in struct:pc_partition
84 uint8_t type; member in struct:part_info
/system/core/init/
H A Dinit.h54 const char *type; member in struct:socketinfo
/system/core/libpixelflinger/
H A Draster.cpp30 GGLsizei width, GGLsizei height, GGLenum type);
54 GGLsizei width, GGLsizei height, GGLenum type)
53 ggl_copyPixels(void* con, GGLint xs, GGLint ys, GGLsizei width, GGLsizei height, GGLenum type) argument

Completed in 242 milliseconds

123