Searched defs:out (Results 26 - 34 of 34) sorted by relevance

12

/system/core/toolbox/
H A Ddd.c85 extern IO in, out;
107 IO in, out; /* input/output state */ variable
182 if (out.name == NULL) {
184 out.fd = STDOUT_FILENO;
185 out.name = "stdout";
189 out.fd = open(out.name, O_RDWR | OFLAGS, DEFFILEMODE);
195 if (out.fd < 0) {
196 out.fd = open(out
[all...]
/system/core/adb/
H A Dcommandline.c73 void version(FILE * out) { argument
74 fprintf(out, "Android Debug Bridge version %d.%d.%d\n",
94 " out directory like 'out/target/product/sooner'.\n"
859 * e.g., "out/target/product/sooner"
861 * e.g., "/src/device/out/target/product/sooner"
909 //TODO: if we have a way to indicate debug, look in out/debug/target/...
912 "out" OS_PATH_SEPARATOR_STR
1041 /* out of recognized modifiers and flags */
1596 out wit
[all...]
H A Dadb.c1319 ** AID_NET_BW_STATS to read out qtaguid statistics
1616 char *out = "unknown"; local
1619 out = transport->serial;
1621 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(out),out);
1626 char *out = "unknown"; local
1629 out = transport->devpath;
1631 snprintf(buf, sizeof buf, "OKAY%04x%s",(unsigned)strlen(out),out);
/system/core/fastboot/
H A Dfastboot.c416 const char **out; local
459 out = malloc(sizeof(char*) * count);
460 if (out == 0) return -1;
463 out[n] = strdup(strip(val[n]));
464 if (out[n] == 0) return -1;
467 fb_queue_require(prod, name, invert, n, out);
480 die("out of memory");
651 if (tmp == 0) die("out of memory");
/system/core/libsparse/
H A Doutput_file.c78 int (*write_data_chunk)(struct output_file *out, unsigned int len,
80 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
82 int (*write_skip_chunk)(struct output_file *out, int64_t len);
83 int (*write_end_chunk)(struct output_file *out);
101 struct output_file out; member in struct:output_file_gz
106 container_of((_o), struct output_file_gz, out)
109 struct output_file out; member in struct:output_file_normal
114 container_of((_o), struct output_file_normal, out)
117 struct output_file out; member in struct:output_file_callback
123 container_of((_o), struct output_file_callback, out)
125 file_open(struct output_file *out, int fd) argument
133 file_skip(struct output_file *out, int64_t cnt) argument
146 file_pad(struct output_file *out, int64_t len) argument
159 file_write(struct output_file *out, void *data, int len) argument
176 file_close(struct output_file *out) argument
191 gz_file_open(struct output_file *out, int fd) argument
205 gz_file_skip(struct output_file *out, int64_t cnt) argument
218 gz_file_pad(struct output_file *out, int64_t len) argument
242 gz_file_write(struct output_file *out, void *data, int len) argument
259 gz_file_close(struct output_file *out) argument
275 callback_file_open(struct output_file *out, int fd) argument
280 callback_file_skip(struct output_file *out, int64_t off) argument
298 callback_file_pad(struct output_file *out, int64_t len) argument
303 callback_file_write(struct output_file *out, void *data, int len) argument
311 callback_file_close(struct output_file *out) argument
348 write_sparse_skip_chunk(struct output_file *out, int64_t skip_len) argument
374 write_sparse_fill_chunk(struct output_file *out, unsigned int len, uint32_t fill_val) argument
410 write_sparse_data_chunk(struct output_file *out, unsigned int len, void *data) argument
451 write_sparse_end_chunk(struct output_file *out) argument
484 write_normal_data_chunk(struct output_file *out, unsigned int len, void *data) argument
502 write_normal_fill_chunk(struct output_file *out, unsigned int len, uint32_t fill_val) argument
527 write_normal_skip_chunk(struct output_file *out, int64_t len) argument
532 write_normal_end_chunk(struct output_file *out) argument
544 output_file_close(struct output_file *out) argument
552 output_file_init(struct output_file *out, int block_size, int64_t len, bool sparse, int chunks, bool crc) argument
671 struct output_file *out; local
691 write_data_chunk(struct output_file *out, unsigned int len, void *data) argument
697 write_fill_chunk(struct output_file *out, unsigned int len, uint32_t fill_val) argument
703 write_fd_chunk(struct output_file *out, unsigned int len, int fd, int64_t offset) argument
752 write_file_chunk(struct output_file *out, unsigned int len, const char *file, int64_t offset) argument
769 write_skip_chunk(struct output_file *out, int64_t len) argument
[all...]
/system/core/sdcard/
H A Dsdcard.c474 struct fuse_entry_out out; local
487 memset(&out, 0, sizeof(out));
488 attr_from_stat(&out.attr, &s, node->nid);
489 out.attr_valid = 10;
490 out.entry_valid = 10;
491 out.nodeid = node->nid;
492 out.generation = node->gen;
494 fuse_reply(fuse, unique, &out, sizeof(out));
501 struct fuse_attr_out out; local
808 struct fuse_open_out out; local
867 struct fuse_write_out out; local
887 struct fuse_statfs_out out; local
952 struct fuse_open_out out; local
1022 struct fuse_init_out out; local
[all...]
/system/core/sh/
H A Dparser.c751 goto out;
761 out:
911 char *out; local
928 (void) &out;
950 STARTSTACKSTR(out);
964 CHECKSTRSPACE(4, out); /* permit 4 calls to USTPUTC */
969 USTPUTC(c, out);
978 USTPUTC(c, out);
982 USTPUTC(CTLESC, out);
983 USTPUTC(c, out);
[all...]
/system/security/keystore/
H A Dkeystore.cpp99 goto out;
106 goto out;
111 out:
248 static int encode_key(char* out, const android::String8& keyName) { argument
251 for (int i = length; i > 0; --i, ++in, ++out) {
253 *out = '+' + (*in >> 6);
254 *++out = '0' + (*in & 0x3F);
257 *out = *in;
260 *out = '\0';
264 static int encode_key_for_uid(char* out, uid_ argument
291 decode_key(char* out, const char* in, size_t length) argument
518 int out = TEMP_FAILURE_RETRY(open(tmpFileName, local
1286 int out = TEMP_FAILURE_RETRY(open(tmpFileName, local
1735 sign(const String16& name, const uint8_t* data, size_t length, uint8_t** out, size_t* outLength) argument
[all...]
/system/bluetooth/bluez-clean-headers/bluetooth/
H A Dhci.h2430 uint8_t out; member in struct:hci_conn_info

Completed in 194 milliseconds

12