HomeSort by relevance Sort by last modified time
    Searched refs:filename (Results 376 - 400 of 8141) sorted by null

<<11121314151617181920>>

  /hardware/qcom/gps/msm8996/utils/
loc_cfg.h 44 #define UTIL_READ_CONF_DEFAULT(filename) \
45 loc_read_conf((filename), NULL, 0);
47 #define UTIL_READ_CONF(filename, config_table) \
48 loc_read_conf((filename), (config_table), sizeof(config_table) / sizeof(config_table[0]))
  /hardware/qcom/gps/msm8998/utils/
loc_cfg.h 44 #define UTIL_READ_CONF_DEFAULT(filename) \
45 loc_read_conf((filename), NULL, 0);
47 #define UTIL_READ_CONF(filename, config_table) \
48 loc_read_conf((filename), (config_table), sizeof(config_table) / sizeof(config_table[0]))
  /hardware/qcom/gps/utils/
loc_cfg.h 44 #define UTIL_READ_CONF_DEFAULT(filename) \
45 loc_read_conf((filename), NULL, 0);
47 #define UTIL_READ_CONF(filename, config_table) \
48 loc_read_conf((filename), (config_table), sizeof(config_table) / sizeof(config_table[0]))
  /system/chre/platform/slpi/include/chre/platform/slpi/
preloaded_nanoapps.h 35 //! The filename of the shared objec tto open.
36 const char *filename; member in struct:chre::PreloadedNanoappDescriptor
  /tools/tradefederation/core/src/com/android/tradefed/result/
DeviceFileReporter.java 82 * @param patterns a varargs array of {@link String} filename glob patterns. Should be absolute.
92 * @param patterns a {@link List} of {@link String} filename glob patterns. Should be absolute.
104 * @param patterns a {@link Map} of {@link String} filename glob patterns to their respective
160 for (String filename : fileList.split("\r?\n")) {
161 filename = filename.trim();
162 if (filename.isEmpty() || filename.endsWith(": No such file or directory")) {
165 if (mSkipRepeatFiles && mReportedFiles.contains(filename)) {
166 CLog.v("Skipping already-reported file %s", filename);
    [all...]
  /external/deqp/scripts/khr_util/
format.py 74 def readFile (filename):
75 f = open(filename, 'rb')
80 def writeFileIfChanged (filename, data):
81 if not os.path.exists(filename) or readFile(filename) != data:
82 f = open(filename, 'wb')
86 def writeLines (filename, lines):
92 writeFileIfChanged(filename, text)
93 print filename
95 def writeInlFile (filename, header, source)
    [all...]
  /prebuilts/checkstyle/gitlint/
git.py 44 def _remove_filename_quotes(filename):
45 """Removes the quotes from a filename returned by git status."""
46 if filename.startswith('"') and filename.endswith('"'):
47 return filename[1:-1]
49 return filename
82 r'(?P<mode>%s) (?P<filename>.+)' % modes_str,
83 groups=('filename', 'mode'))
85 return dict((os.path.join(root, _remove_filename_quotes(filename)), mode)
86 for filename, mode in modified_file_status
    [all...]
  /bionic/libc/system_properties/include/system_properties/
context_node.h 37 ContextNode(const char* context, const char* filename)
38 : context_(context), pa_(nullptr), no_access_(false), filename_(filename) {
  /bootable/recovery/otautil/include/otautil/
SysUtil.h 31 // Map a file into a private, read-only memory segment. If 'filename' begins with an '@'
33 bool MapFile(const std::string& filename);
47 bool MapBlockFile(const std::string& filename);
  /bootable/recovery/
rotate_logs.h 27 ssize_t logbasename(log_id_t id, char prio, const char* filename, const char* buf, size_t len,
30 ssize_t logrotate(log_id_t id, char prio, const char* filename, const char* buf, size_t len,
  /build/kati/
file.h 29 explicit Makefile(const string& filename);
33 const string& filename() const { return filename_; } function in class:Makefile
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
genericpath.py 55 def getsize(filename):
57 return os.stat(filename).st_size
60 def getmtime(filename):
62 return os.stat(filename).st_mtime
65 def getatime(filename):
67 return os.stat(filename).st_atime
70 def getctime(filename):
72 return os.stat(filename).st_ctime
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_text_file.py 55 filename = os.path.join(tmpdir, "test.txt")
56 out_file = open(filename, "w")
62 in_file = TextFile(filename, strip_comments=0, skip_blanks=0,
69 in_file = TextFile(filename, strip_comments=1, skip_blanks=0,
76 in_file = TextFile(filename, strip_comments=0, skip_blanks=1,
83 in_file = TextFile(filename)
89 in_file = TextFile(filename, strip_comments=1, skip_blanks=1,
96 in_file = TextFile(filename, strip_comments=1, skip_blanks=1,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
genericpath.py 47 def getsize(filename):
49 return os.stat(filename).st_size
52 def getmtime(filename):
54 return os.stat(filename).st_mtime
57 def getatime(filename):
59 return os.stat(filename).st_atime
62 def getctime(filename):
64 return os.stat(filename).st_ctime
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3filestream.h 39 ANTLR3_API ANTLR3_FDSC antlr3Fopen (pANTLR3_UINT8 filename, const char * mode);
42 ANTLR3_API ANTLR3_UINT32 antlr3Fsize (pANTLR3_UINT8 filename);
43 ANTLR3_API ANTLR3_UINT32 antlr3read8Bit (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 fileName);
  /external/autotest/client/cros/chameleon/
edid.py 83 def from_file(cls, filename, skip_verify=False):
86 @param filename: A string of filename.
89 if not os.path.exists(filename):
90 raise ValueError('EDID file %r does not exist' % filename)
92 if filename.upper().endswith('.TXT'):
96 open(filename).readlines()))
98 data = open(filename).read()
102 def to_file(self, filename):
105 @param filename: A string of filename
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
firmware_utils_unittest.py 31 for filename, (expected_fw, expected_date) in filenames.items():
32 actual_fw, actual_date = firmware_utils.get_fw_and_date(filename)
  /external/autotest/server/site_tests/telemetry_Benchmarks/
generate_controlfiles.py 110 filename = 'control.%s' % test
111 with open(filename, 'w+') as f:
  /external/autotest/server/site_tests/video_VDAStress/
generate_controlfiles.py 67 filename = 'control.%s.%s.%d' % (test.decoder, test.access, shard_number) variable
68 with open(filename, 'w+') as f:
  /external/deqp/executor/
xeTestLogWriter.hpp 41 void writeBatchResultToFile (const BatchResult& batchResult, const char* filename);
45 void writeTestResultToFile (const TestCaseResult& result, const char* filename);
  /external/elfutils/src/
arlib2.c 32 /* Add long file name FILENAME of length FILENAMELEN to the symbol table
35 arlib_add_long_name (const char *filename, size_t filenamelen)
39 obstack_grow (&symtab.longnamesob, filename, filenamelen);
  /external/flac/include/share/grabbag/
file.h 48 FLAC__bool grabbag__file_change_stats(const char *filename, FLAC__bool read_only);
55 FLAC__bool grabbag__file_remove_file(const char *filename);
  /external/google-benchmark/
.ycm_extra_conf.py 74 def IsHeaderFile( filename ):
75 extension = os.path.splitext( filename )[ 1 ]
79 def GetCompilationInfoForFile( filename ):
84 if IsHeaderFile( filename ):
85 basename = os.path.splitext( filename )[ 0 ]
94 return database.GetCompilationInfoForFile( filename )
97 def FlagsForFile( filename, **kwargs ):
101 compilation_info = GetCompilationInfoForFile( filename )
  /external/ltp/lib/
tst_resource.c 84 const char *filename, const char *dest)
86 size_t len = strlen(path) + strlen(filename) + 2;
89 snprintf(buf, sizeof(buf), "%s/%s", path, filename);
102 const char *filename, const char *dest)
119 if (file_copy(file, lineno, cleanup_fn, dataroot, filename, dest))
127 if (file_copy(file, lineno, cleanup_fn, buf, filename, dest))
133 if (file_copy(file, lineno, cleanup_fn, startwd, filename, dest))
137 filename, file, lineno);
  /external/ltp/testcases/kernel/fs/fs-bench/
create-files.c 20 void create_file(char *filename);
34 char filename[MAXN]; local
63 sprintf(filename, "%s%s%s%2.2x", dir1,
65 create_file(filename);
100 void create_file(char *filename)
104 if ((fd = creat(filename, S_IRWXU)) < 0) {
106 perror(filename);
114 perror(filename);

Completed in 2061 milliseconds

<<11121314151617181920>>