Searched refs:file (Results 26 - 50 of 81) sorted by relevance

1234

/system/extras/ext4_utils/
H A Dbacked_block.h5 * you may not use this file except in compliance with the License.
26 const char *file, off64_t offset,
H A Doutput_file.h5 * you may not use this file except in compliance with the License.
26 void write_data_file(struct output_file *out, u64 off, const char *file,
/system/core/sh/
H A Doutput.c105 * Set up an output file to write to memory rather than a file.
109 open_mem(char *block, int length, struct output *file) argument
111 file->nextc = block;
112 file->nleft = --length;
113 file->fd = BLOCK_OUT;
114 file->flags = 0;
134 outstr(const char *p, struct output *file) argument
137 outc(*p++, file);
138 if (file
211 outfmt(struct output *file, const char *fmt, ...) argument
[all...]
H A Dmktokens41 TEOF 1 end of file
/system/core/sh/bltin/
H A Dbltin.h38 * This file is included by programs which are optionally built into the
56 #define putc(c, file) outc(c, file)
/system/core/toolbox/
H A Dtop.c226 FILE *file; local
239 file = fopen("/proc/stat", "r");
240 if (!file) die("Could not open /proc/stat.\n");
241 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime,
243 fclose(file);
324 FILE *file; local
328 file = fopen(filename, "r");
329 if (!file) return 1;
330 fgets(buf, MAX_LINE, file);
331 fclose(file);
365 FILE *file; local
396 FILE *file; local
[all...]
/system/extras/fatblock/
H A Dfatblock.h5 * you may not use this file except in compliance with the License.
43 struct file { struct
H A Dread.c5 * you may not use this file except in compliance with the License.
52 static int file_check_metadata(struct file *f)
72 static int file_read(struct file *f, char *buf, offset_t off, offset_t len)
152 return file_read((struct file *)e, buf, off, len);
/system/extras/tests/sdcard/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
15 # Build control file for Bionic's test programs
/system/media/mca/tests/src/android/camera/mediaeffects/tests/functional/
H A DEffectsVideoCapture.java5 * you may not use this file except in compliance with the License.
71 File file = new File(Environment.getExternalStorageDirectory(),
73 Uri uri = Uri.fromFile(file);
80 // Verify the video file
/system/vold/
H A DProcess.cpp5 * you may not use this file except in compliance with the License.
104 // append the file name, after truncating to parent directory
129 FILE *file; local
133 file = fopen(buffer, "r");
134 if (!file)
137 while (fgets(buffer, sizeof(buffer), file)) {
145 fclose(file);
150 fclose(file);
201 SLOGE("Process %s (%d) has open file %s", name, pid, openfile);
/system/media/wilhelm/tests/native-media/jni/
H A Dnative-media-jni.c5 * you may not use this file except in compliance with the License.
66 // handle of the file to play
67 FILE *file; variable
69 // has the app reached the end of the file
120 rewind(file);
193 nbRead = fread(pBufferData, BUFFER_SIZE, 1, file);
301 nbRead = fread(dataCache, BUFFER_SIZE, NB_BUFFERS, file);
349 // open the file to play
350 file = fopen(utf8, "rb");
351 if (file
[all...]
/system/media/wilhelm/tests/sandbox/streamSource/
H A DslesTestPlayStream.cpp5 * you may not use this file except in compliance with the License.
44 FILE *file; variable
45 /* Has the app reached the end of the file */
87 // to play a .ts file, but rather shows more ways to exercise the API
108 size_t nbRead = fread((void*)dataCache, 1, BUFFER_SIZE*(NB_BUFFERS/2), file);
150 size_t nbRead = fread((void*)pBufferData, 1, BUFFER_SIZE, file);
208 file = fopen(path, "rb");
297 if (fread(dataCache, 1, BUFFER_SIZE * NB_BUFFERS, file) <= 0) {
311 if (fread(dataCache, 1, BUFFER_SIZE * 1, file) <= 0) {
375 fclose(file);
[all...]
/system/core/libctest/
H A Dctest.c5 * you may not use this file except in compliance with the License.
131 // TODO: Report file name.
150 void assertTrueWithSource(int value, const char* file, int line, char* message) { argument
154 fprintf(suite->out, "Assertion failed: [%s:%d] %s: %s\n", file, line,
/system/core/libmincrypt/tools/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/extras/latencytop/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/extras/libpagemap/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/extras/librank/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/extras/libublock/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/extras/procmem/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/extras/timeinfo/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/media/mca/filterpacks/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/bluetooth/data/
H A Dauto_pairing.conf1 // Do NOT change this file format without updating the parsing logic in
4 // This file contains information to prevent auto pairing with Bluetooth devices.
23 // Note the reverse logic in this case compared to other's in this file
/system/core/libnetutils/
H A Ddhcpmsg.h5 * you may not use this file except in compliance with the License.
55 char file[128]; /* asciiz boot file name */ member in struct:dhcp_msg
/system/extras/tests/bionic/libc/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
15 # Build control file for Bionic's test programs
29 $(foreach file,$(1), \
31 $(eval LOCAL_SRC_FILES := $(file)) \
32 $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \
47 $(foreach file,$(1), \
49 $(eval LOCAL_SRC_FILES := $(file)) \
50 $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \

Completed in 300 milliseconds

1234