Searched refs:file (Results 76 - 91 of 91) sorted by relevance

1234

/system/keymaster/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/media/camera/docs/
H A Dmetadata_parser_xml.py7 # you may not use this file except in compliance with the License.
79 raise ValueError("%s has an invalid XML file" % (file_name))
88 Construct a new MetadataParserXml by loading and parsing an XML file.
91 file_name: Name of the XML file to load and parse.
94 ValueError: if the XML file failed to pass metadata_validate.py
97 MetadataParserXml instance representing the XML file.
99 return MetadataParserXml(file(file_name).read(), file_name)
136 # add all entries, preserving the ordering of the XML file
287 The output file is encoded with UTF-8.
290 template: path to a Mako template file
[all...]
H A Dmetadata_validate.py7 # you may not use this file except in compliance with the License.
317 succ = validate_xml(file(file_name).read()) is not None
H A Dmetadata_template.mako6 you may not use this file except in compliance with the License.
H A Dhtml.mako7 you may not use this file except in compliance with the License.
/system/netd/server/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/security/softkeymaster/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/core/toolbox/
H A Dgetevent.c267 FILE *file; local
279 file = fopen(filename, "r");
280 if (file) {
282 while (fgets(line, sizeof(line), file)) {
286 fclose(file);
H A DAndroid.mk57 upstream-netbsd/usr.bin/grep/file.c \
245 $(TOOLS_H): PRIVATE_CUSTOM_TOOL = echo "/* file generated automatically */" > $@ ; for t in $(PRIVATE_TOOLS) ; do echo "TOOL($$t)" >> $@ ; done
/system/core/fastboot/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/core/libutils/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/system/core/adb/
H A Dsysdeps_win32.c24 HANDLE file; local
28 file = CreateFile( fn,
36 if (file == INVALID_HANDLE_VALUE)
39 file_size = GetFileSize( file, NULL );
50 if ( !ReadFile( file, data, file_size, &out_bytes, NULL ) ||
60 CloseHandle( file );
69 /***** common file descriptor handling *****/
177 D( "_fh_alloc: no more free file descriptors\n" );
209 /***** file-based descriptor handling *****/
299 /***** file
[all...]
/system/core/libsparse/
H A Doutput_file.c5 * you may not use this file except in compliance with the License.
745 /* Write a contiguous region of data blocks from a file */
747 const char *file, int64_t offset)
751 int file_fd = open(file, O_RDONLY | O_BINARY);
746 write_file_chunk(struct output_file *out, unsigned int len, const char *file, int64_t offset) argument
/system/extras/ext4_utils/
H A Dext4.h27 #define EXT4_ERROR_FILE(file, fmt, a...) ext4_error_file(__func__, (file), (fmt), ## a);
/system/core/include/log/
H A Dlog.h5 * you may not use this file except in compliance with the License.
23 // The output will be correct when the log file is shared between multiple
51 * at the top of your source file) to change that behavior.
501 * The stuff in the rest of this file should not be used directly.
543 #define android_logToFile(tag, file) (0)
/system/core/sdcard/
H A Dsdcard.c5 * you may not use this file except in compliance with the License.
130 /* Permission mode for a specific node. Controls how file permissions
185 struct node *child; /* first contained file by this dir */
190 /* If non-null, this is the real name of the file in the underlying storage.
368 /* Finds the absolute path of a file within a given directory.
369 * Performs a case-insensitive search for the file and sets the buffer to the path
370 * of the first matching file. If 'search' is zero or if no match is found, sets
371 * the buffer to the path that the file would have, assuming the name were case-sensitive.
429 /* Filter requested mode based on underlying file, and
430 * pass through file typ
1668 FILE* file = fopen(kPackagesListFile, "r"); local
[all...]

Completed in 666 milliseconds

1234