Searched refs:type (Results 1 - 25 of 108) 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/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);
/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/include/utils/
H A DCondition.h57 Condition(int type);
66 void signal(WakeUpType type) { argument
67 if (type == WAKE_UP_ONE) {
91 inline Condition::Condition(int type) { argument
92 if (type == SHARED) {
H A DMutex.h51 Mutex(int type, const char* name = NULL);
97 inline Mutex::Mutex(int type, __attribute__((unused)) const char* name) { argument
98 if (type == SHARED) {
H A DRWLock.h51 RWLock(int type, const char* name = NULL);
90 inline RWLock::RWLock(int type, __attribute__((unused)) const char* name) { argument
91 if (type == SHARED) {
/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/media/camera/docs/
H A Dmetadata_model_test.py16 entry1 = Entry(name="entry1", type="int32", kind="static",
18 entry2 = Entry(name="entry2", type="int32", kind="static",
20 entry3 = Entry(name="entry3", type="int32", kind="static",
62 entry1 = Entry(name="entry1", type="int32", kind="static",
64 entry2 = Entry(name="entry2", type="int32", kind="static",
96 entry1 = Entry(name="entry1", type="int32", kind="static",
98 entry2 = Entry(name="entry2", type="int32", kind="static",
100 entry3 = Entry(name="entry3", type="int32", kind="static",
/system/core/include/log/
H A Dlogd.h42 int __android_log_btwrite(int32_t tag, char type, const void *payload,
/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/core/libmemtrack/
H A Dmemtrack.c32 enum memtrack_type type; member in struct:memtrack_proc::memtrack_proc_type
80 pid_t pid, enum memtrack_type type)
86 ret = module->getMemory(module, pid, type, t->records, &num_records);
148 enum memtrack_type type = types[i]; local
149 for (j = 0; j < p->types[type].num_records; j++) {
150 if ((p->types[type].records[j].flags & flags) == flags) {
151 sum += p->types[type].records[j].size_in_bytes;
79 memtrack_proc_get_type(struct memtrack_proc_type *t, pid_t pid, enum memtrack_type type) argument
/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
495 calculate_camera_metadata_entry_data_size(uint8_t type, size_t data_count) argument
503 add_camera_metadata_entry_raw(camera_metadata_t *dst, uint32_t tag, uint8_t type, const void *data, size_t data_count) argument
544 int type = get_camera_metadata_tag_type(tag); local
893 print_data(int fd, const uint8_t *data_ptr, uint32_t tag, int type, int count, int indentation) argument
[all...]
/system/core/include/sysutils/
H A DNetlinkEvent.h52 bool parseIfAddrMessage(int type, struct ifaddrmsg *ifaddr, int rtasize);
/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

Completed in 264 milliseconds

12345