Home
last modified time | relevance | path

Searched refs:directory_path (Results 1 – 12 of 12) sorted by relevance

/external/autotest/client/common_lib/cros/
Dsmbprovider.py138 def create_directory(self, mount_id, directory_path, recursive): argument
151 logging.info("Creating directory: %s", directory_path)
158 proto.directory_path = directory_path
167 def read_directory(self, mount_id, directory_path): argument
179 logging.info("Reading directory: %s", directory_path)
187 proto.directory_path = directory_path
/external/ltp/testcases/kernel/syscalls/getcpu/
Dgetcpu01.c86 char directory_path[PATH_MAX]; in get_nodeid() local
103 sprintf(directory_path, "/sys/devices/system/node/%s", in get_nodeid()
105 directory_node = opendir(directory_path); in get_nodeid()
/external/libchrome/base/files/
Ddir_reader_linux.h33 explicit DirReaderLinux(const char* directory_path) in DirReaderLinux() argument
34 : fd_(open(directory_path, O_RDONLY | O_DIRECTORY)), in DirReaderLinux()
Ddir_reader_fallback.h14 explicit DirReaderFallback(const char* directory_path) {} in DirReaderFallback() argument
/external/tensorflow/tensorflow/python/kernel_tests/
Dio_ops_test.py101 directory_path = files[0].name[:files[0].name.find(cases[0])]
102 pattern = directory_path + 'AB%sDEF.GH*'
135 pattern % '?', directory_path + 'X?Z*']).eval(),
/external/kernel-headers/original/uapi/linux/
Dincrementalfs.h323 __aligned_u64 directory_path; member
466 __aligned_u64 directory_path; member
/external/autotest/client/site_tests/enterprise_SmbProviderDaemon/
Denterprise_SmbProviderDaemon.py335 directory_path, argument
348 directory_path,
/external/angle/tools/android/modularization/convenience/
Dlookup_dep.py294 directory_path: pathlib.Path = source_path.parent
296 for part in reversed(directory_path.parts):
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py257 directory_path = os.path.join(output_path, subpath[1:])
260 if not os.path.exists(directory_path):
261 os.makedirs(directory_path)
279 file_path = os.path.join(directory_path, 'LLVMBuild.txt')
/external/cros/system_api/dbus/smbprovider/
Ddirectory_entry.proto90 optional string directory_path = 2; field
182 optional string directory_path = 2; field
/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py2260 def create_dir(self, directory_path, perm_bits=PERM_DEF): argument
2275 directory_path = self.make_string_path(directory_path)
2276 directory_path = self.absnormpath(directory_path)
2277 self._auto_mount_drive_if_needed(directory_path)
2278 if self.exists(directory_path, check_link=True):
2279 self.raise_os_error(errno.EEXIST, directory_path)
2280 path_components = self._path_components(directory_path)
/external/python/pyfakefs/pyfakefs/tests/
Dfake_open_test.py187 directory_path = self.make_path('foo')
188 self.os.mkdir(directory_path)
191 directory_path)
194 directory_path)