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

12345

/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...]
H A Dparser.c163 if (n2->type == NCMD || n2->type == NPIPE) {
165 } else if (n2->type == NREDIR) {
166 n2->type = NBACKGND;
169 n3->type = NBACKGND;
180 n3->type = NSEMI;
237 n3->type = t;
261 pipenode->type = NPIPE;
278 n2->type = NNOT;
318 n1->type
[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:__anon268
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:__anon262
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:__anon266
289 int type = -1; local
[all...]
/system/core/include/cutils/
H A Dsockets.h87 extern int socket_loopback_client(int port, int type);
88 extern int socket_network_client(const char *host, int port, int type);
89 extern int socket_loopback_server(int port, int type);
90 extern int socket_local_server(const char *name, int namespaceId, int type);
93 const char *name, int namespaceId, int type);
94 extern int socket_local_client(const char *name, int namespaceId, int type);
95 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 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/fs_mgr/
H A Dfs_mgr_priv.h31 char *type; member in struct:fstab_rec
/system/core/libpixelflinger/
H A Draster.h28 void gglCopyPixels(void* c, GGLint x, GGLint y, GGLsizei width, GGLsizei height, GGLenum type);
/system/core/libsparse/
H A Dbacked_block.c29 enum backed_block_type type; member in struct:backed_block
77 assert(bb->type == BACKED_BLOCK_DATA);
83 assert(bb->type == BACKED_BLOCK_FILE);
89 assert(bb->type == BACKED_BLOCK_FD);
95 assert(bb->type == BACKED_BLOCK_FILE || bb->type == BACKED_BLOCK_FD);
96 if (bb->type == BACKED_BLOCK_FILE) {
98 } else { /* bb->type == BACKED_BLOCK_FD */
105 assert(bb->type == BACKED_BLOCK_FILL);
111 return bb->type;
[all...]
/system/media/camera/src/
H A Dcamera_metadata.c27 * A single metadata entry, storing an array of values of a given type. If the
39 uint8_t type; member in struct:camera_metadata_buffer_entry
265 if ( camera_metadata_type_size[entry->type] * entry->count > 4 ) {
301 size_t calculate_camera_metadata_entry_data_size(uint8_t type, argument
303 if (type >= NUM_TYPES) return 0;
305 camera_metadata_type_size[type];
311 uint8_t type,
320 calculate_camera_metadata_entry_data_size(type, data_count);
324 entry->type = type;
309 add_camera_metadata_entry_raw(camera_metadata_t *dst, uint32_t tag, uint8_t type, const void *data, size_t data_count) argument
345 int type = get_camera_metadata_tag_type(tag); local
689 print_data(int fd, const uint8_t *data_ptr, int type, int count, int indentation) argument
[all...]
/system/core/debuggerd/arm/
H A Dcrashglue.S2 .type crash1, %function
4 .type crashnostack, %function
/system/extras/tests/framebuffer/
H A Dminui.h37 unsigned type; member in struct:event
/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;
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp239 EXPECT_EQ(TYPE_INT64, entry.type);
248 EXPECT_EQ(TYPE_INT32, entry.type);
257 EXPECT_EQ(TYPE_FLOAT, entry.type);
266 EXPECT_EQ(TYPE_FLOAT, entry.type);
334 EXPECT_EQ(TYPE_INT64, entry.type);
339 entry.type = 56;
346 EXPECT_EQ((uint8_t)56, entry.type);
395 EXPECT_EQ(e1.type, e2.type);
398 j < e1.count * camera_metadata_type_size[e1.type];
785 int type = get_camera_metadata_tag_type(tag); local
[all...]
/system/extras/fatblock/
H A Dfs.c29 offset_t start, offset_t len, int type)
36 extent->type = type;
110 offset_t len, int type, cluster_t *first_cluster_out)
121 extent->type = type;
151 type);
204 strpadcpy(bs->type, "FAT32", ' ', sizeof(bs->type));
28 fs_add_extent(struct fs *fs, struct extent *extent, offset_t start, offset_t len, int type) argument
109 fs_alloc_extent(struct fs *fs, struct extent *extent, offset_t len, int type, cluster_t *first_cluster_out) argument
/system/vold/
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);

Completed in 4491 milliseconds

12345