HomeSort by relevance Sort by last modified time
    Searched refs:file_path (Results 276 - 300 of 422) sorted by null

<<11121314151617

  /frameworks/native/libs/vr/libvrflinger/
display_service.cpp 210 std::string file_path = base::GetProperty(property_name, ""); local
211 if (file_path.empty()) {
216 if (!base::ReadFileToString(file_path, &data)) {
  /system/extras/simpleperf/
thread_tree.cpp 281 void ThreadTree::AddDsoInfo(const std::string& file_path, uint32_t file_type,
286 dso = FindKernelDsoOrNew(file_path);
288 dso = FindUserDsoOrNew(file_path);
thread_tree.h 118 void AddDsoInfo(const std::string& file_path, uint32_t file_type,
  /tools/tradefederation/core/atest/test_finders/
test_finder_utils.py 643 dir_path, file_path = os.path.split(path)
645 dir_path, file_path = path, None
646 return dir_path, file_path
  /external/autotest/site_utils/
lxc_cleanup.py 153 file_path=os.path.abspath(options.logfile),
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor_util/
move.py 38 print >> sys.stderr, 'Error updating %s: %s' % (module.file_path, e)
  /external/llvm/utils/lit/lit/formats/
googletest.py 79 yield lit.Test.Test(testSuite, testPath, localConfig, file_path=execpath)
  /external/tensorflow/tensorflow/core/debug/
debug_io_utils.h 201 const string& file_path);
  /hardware/qcom/audio/post_proc/
volume_listener.c 596 char file_path[PATH_MAX]; local
600 snprintf(file_path, PATH_MAX, "%s/%s",
602 if (F_OK == access(file_path, mode)) {
603 strcpy(file_name, file_path);
  /system/update_engine/common/
prefs.h 24 #include <base/files/file_path.h>
  /external/autotest/client/cros/audio/
audio_analysis_unittest.py 112 file_path = os.path.join(
114 binary = open(file_path, 'r').read()
  /external/google-breakpad/src/client/windows/unittests/
minidump_test.cc 131 bool HasFileInfo(const std::wstring& file_path) {
133 const wchar_t* path = file_path.c_str();
  /external/protobuf/src/google/protobuf/io/
printer.cc 90 const string& file_path, const vector<int>& path) {
104 annotation_collector_->AddAnnotation(begin.first, end.second, file_path,
  /external/puffin/src/
utils.cc 153 bool LocateDeflatesInZlibBlocks(const string& file_path,
156 auto src = FileStream::Open(file_path, true, false);
  /external/tensorflow/tensorflow/python/debug/cli/
debugger_cli_common_test.py 253 file_path = tempfile.mktemp()
254 screen_output.write_to_file(file_path)
256 with gfile.Open(file_path, "r") as f:
260 gfile.Remove(file_path)
277 file_path = os.path.join(tempfile.mkdtemp(), "foo", "bar.txt")
279 screen_output.write_to_file(file_path)
    [all...]
profile_analyzer_cli.py 124 self._profile_datum_list[row].file_path,
177 if (not profile_datum.file_path or
178 not file_path_regex.match(profile_datum.file_path)):
453 file_path = trace_entry[0]
456 if not source_utils.guess_is_tensorflow_py_library(file_path):
458 node_to_file_path[op.name] = file_path
  /system/update_engine/scripts/
brillo_update_payload 269 # truncate_file <file_path> <file_size>
271 # Truncate the given |file_path| to |file_size| using perl.
274 local file_path="$1"
278 close(FILE);" "${file_path}"
  /test/vts/utils/python/coverage/
gcno_parser_test.py 192 file_path = os.path.join(dir_path, self.GOLDEN_GCNO_PATH)
193 summary = gcno_parser.ParseGcnoFile(file_path)
  /test/vts/utils/python/library/
elf_parser.py 81 def __init__(self, file_path, begin_offset=0):
85 file_path: The path to the file.
93 self._file = open(file_path, "rb")
  /tools/test/connectivity/acts/framework/tests/
audio_analysis_unittest.py 128 file_path = os.path.join(
130 binary = open(file_path, 'rb').read()
  /art/tools/hiddenapi/
hiddenapi_test.cc 31 std::string file_path = GetTestAndroidRoot(); local
32 file_path += "/bin/hiddenapi";
34 file_path += "d";
36 if (!OS::FileExists(file_path.c_str())) {
37 LOG(FATAL) << "Could not find binary " << file_path;
40 return file_path;
  /development/vndk/tools/sourcedr/sourcedr/static/js/
main.js 167 let path = $('#file_path').text();
258 $('#file_path').text(file);
315 path: $('#file_path').text(),
  /external/libchrome/base/files/
file_util_posix.cc 27 #include "base/files/file_path.h"
693 bool IsLink(const FilePath& file_path) {
697 if (CallLstat(file_path.value().c_str(), &st) != 0)
706 bool GetFileInfo(const FilePath& file_path, File::Info* results) {
709 if (file_path.IsContentUri()) {
710 File file = OpenContentUriForRead(file_path);
716 if (CallStat(file_path.value().c_str(), &file_info) != 0)
  /test/vts/runners/host/
base_test.py     [all...]
  /tools/test/connectivity/acts/tests/google/bt/power/
A2dpPowerTest.py 43 def push_file_to_device(ad, file_path, device_path, config_path):
48 file_path: File path for the file to be pushed to the device
57 if not os.path.isfile(file_path):
58 file_path = os.path.join(config_path, file_path)
59 if not os.path.isfile(file_path):
61 ad.adb.push("{} {}".format(file_path, device_path))
    [all...]

Completed in 665 milliseconds

<<11121314151617