Searched refs:type (Results 1 - 25 of 102) 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...]
H A Dshow.c82 switch(n->type) {
114 fprintf(fp, "<node type %d>", n->type);
141 switch (np->nfile.type) {
154 if (np->nfile.type == NTOFD || np->nfile.type == NFROMFD) {
172 if (arg->type != NARG) {
173 printf("<node type %d>\n", arg->type);
/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 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/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/core/debuggerd/arm/
H A Dcrashglue.S2 .type crash1, %function
4 .type crashnostack, %function
/system/core/libcutils/tests/memset_mips/
H A Dandroid_memset_dumb.S2 .type android_memset16_dumb, @function
21 .type android_memset32_dumb, @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/src/
H A Dcamera_metadata.c35 // Align data buffer to largest supported data type
44 * A single metadata entry, storing an array of values of a given type. If the
56 uint8_t type; member in struct:camera_metadata_buffer_entry
111 * non-pointer type description in order to figure out the largest alignment
326 "expected %p) to type %s",
387 if (entry.type >= NUM_TYPES) {
388 ALOGE("%s: Entry index %u had a bad type %d",
389 __FUNCTION__, i, entry.type);
397 if (tag_type != (int)entry.type && tag_section < VENDOR_SECTION) {
398 ALOGE("%s: Entry index %u had tag type
494 calculate_camera_metadata_entry_data_size(uint8_t type, size_t data_count) argument
502 add_camera_metadata_entry_raw(camera_metadata_t *dst, uint32_t tag, uint8_t type, const void *data, size_t data_count) argument
542 int type = get_camera_metadata_tag_type(tag); local
891 print_data(int fd, const uint8_t *data_ptr, uint32_t tag, int type, int count, int indentation) argument
[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/core/toolbox/cp/
H A Dcp.c109 enum op type; local
273 type = DIR_TO_DNE;
275 type = FILE_TO_FILE;
277 type = FILE_TO_FILE;
279 if (have_trailing_slash && type == FILE_TO_FILE) {
290 type = FILE_TO_DIR;
303 exit(copy(argv, type, fts_options));
328 copy(char *argv[], enum op type, int fts_options) argument
363 if (type != FILE_TO_FILE) {
392 if (type !
[all...]
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp263 EXPECT_EQ(TYPE_INT64, entry.type);
272 EXPECT_EQ(TYPE_INT32, entry.type);
281 EXPECT_EQ(TYPE_FLOAT, entry.type);
290 EXPECT_EQ(TYPE_FLOAT, entry.type);
358 EXPECT_EQ(TYPE_INT64, entry.type);
363 entry.type = 56;
370 EXPECT_EQ((uint8_t)56, entry.type);
439 EXPECT_EQ(e1.type, e2.type);
442 j < e1.count * camera_metadata_type_size[e1.type];
849 int type = get_camera_metadata_tag_type(tag); local
[all...]

Completed in 237 milliseconds

12345