Home
last modified time | relevance | path

Searched refs:ListDirectory (Results 1 – 22 of 22) sorted by relevance

/external/chromium-trace/catapult/devil/devil/android/
Ddevice_utils_devicetest.py124 filenames = self.device.ListDirectory(_DEVICE_DIR)
152 filenames = self.device.ListDirectory(_DEVICE_DIR)
196 filenames = self.device.ListDirectory(_DEVICE_DIR)
206 filenames = self.device.ListDirectory(
227 top_level_dirs = self.device.ListDirectory(_DEVICE_DIR)
230 sub_dir = self.device.ListDirectory('%s/%s' % (_DEVICE_DIR, _SUB_DIR))
240 top_level_dirs = self.device.ListDirectory(_DEVICE_DIR)
243 sub_dir = self.device.ListDirectory('%s/%s' % (_DEVICE_DIR, _SUB_DIR))
Ddevice_utils.py2023 def ListDirectory(self, device_path, as_root=False, **kwargs): member in DeviceUtils
Ddevice_utils_test.py2233 return self.device.ListDirectory('/')
/external/chromium-trace/catapult/devil/devil/android/perf/
Dperf_control_test.py45 mock_device.ListDirectory.return_value = cpu_list + ['cpufreq']
68 mock_device.ListDirectory.return_value = cpu_list + ['cpufreq']
91 mock_device.ListDirectory.return_value = cpu_list + ['cpufreq']
Dperf_control.py103 for file_name in self._device.ListDirectory(self._CPU_PATH, as_root=True):
/external/tensorflow/tensorflow/python/eager/
Dprofiler_test.py55 file_list = gfile.ListDirectory(logdir)
57 for file_name in gfile.ListDirectory(logdir):
Dprofiler.py124 for file_name in gfile.ListDirectory(logdir):
/external/tensorflow/tensorflow/contrib/session_bundle/
Dexporter_test.py232 self.assertEquals(gfile.ListDirectory(export_path), ["00000100"])
235 sorted(gfile.ListDirectory(export_path)), ["00000100", "00000101"])
238 sorted(gfile.ListDirectory(export_path)), ["00000101", "00000102"])
Dgc.py210 raw_paths = gfile.ListDirectory(base_dir)
/external/tensorflow/tensorflow/python/profiler/
Dprofile_context_test.py84 for f in gfile.ListDirectory(test.get_temp_dir()):
93 for f in gfile.ListDirectory(test.get_temp_dir()):
Dmodel_analyzer_test.py597 ret = gfile.ListDirectory(time_dir)
604 self.assertEqual(len(gfile.ListDirectory(time_dir)), 0)
606 ret = gfile.ListDirectory(memory_dir)
613 self.assertEqual(len(gfile.ListDirectory(memory_dir)), 0)
615 ret = gfile.ListDirectory(profile_dir)
622 self.assertEqual(len(gfile.ListDirectory(profile_dir)), 0)
/external/tensorflow/tensorflow/python/platform/
Dgfile.py30 from tensorflow.python.lib.io.file_io import list_directory as ListDirectory unknown
/external/tensorflow/tensorflow/contrib/summary/
Dsummary_test_util.py86 files = gfile.ListDirectory(logdir)
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
Dgc.py212 raw_paths = gfile.ListDirectory(base_dir)
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.gfile.pbtxt36 name: "ListDirectory"
/external/tensorflow/tensorflow/python/debug/wrappers/
Ddumping_wrapper.py81 elif gfile.ListDirectory(session_root):
/external/tensorflow/tensorflow/contrib/ignite/python/tests/
Digfs_test.py146 ls_result = gfile.ListDirectory(dir_name)
/external/chromium-trace/catapult/devil/devil/android/tools/
Dprovision_devices.py256 for filename in device.ListDirectory(path):
/external/tensorflow/tensorflow/contrib/distribute/python/
Dstrategy_test_lib.py101 files = gfile.ListDirectory(logdir)
/external/tensorflow/tensorflow/python/kernel_tests/
Dsummary_ops_test.py1137 files = gfile.ListDirectory(logdir)
/external/tensorflow/tensorflow/contrib/cmake/
DREADME.md103 * Path manipulation functions (such as `tf.gfile.ListDirectory()`) are not
/external/chromium-trace/catapult/devil/docs/
Ddevice_utils.md668 ### DeviceUtils.ListDirectory