Home
last modified time | relevance | path

Searched refs:module_path (Results 1 – 14 of 14) sorted by relevance

/external/chromium-trace/catapult/catapult_base/catapult_base/refactor_util/
Dmove.py102 def _BaseDir(module_path): argument
103 if not os.path.isdir(module_path):
104 module_path = os.path.dirname(module_path)
106 while '__init__.py' in os.listdir(module_path):
107 module_path = os.path.dirname(module_path)
109 return module_path
112 def _ModulePath(module_path): argument
113 if os.path.split(module_path)[1] == '__init__.py':
114 module_path = os.path.dirname(module_path)
115 rel_path = os.path.relpath(module_path, _BaseDir(module_path))
/external/autotest/client/site_tests/network_WlanDriver/
Dnetwork_WlanDriver.py85 device_name, module_path = device_description
87 device_name, module_path)
98 if module_path != expected_driver:
102 module_path, expected_driver))
/external/autotest/puppylab/
DClusterTemplate38 puppet.module_path = "%(module_path)s"
59 puppet.module_path = "%(module_path)s"
DCoreClusterTemplate19 puppet.module_path = "%(module_path)s"
/external/autotest/client/tests/kvm/
Dkvm.py73 module_path = os.path.join(d, "%s.py" % t_type)
74 if os.path.isfile(module_path):
/external/compiler-rt/lib/sanitizer_common/scripts/
Dsancov.py157 (start, end, base, module_path) = mem_map[map_idx]
164 for ((start, end, base, module_path), pc_list) in zip(mem_map, mem_map_pcs):
167 dst_path = module_path + '.' + os.path.basename(path)[:-4]
/external/google-breakpad/src/tools/mac/crash_report/
Don_demand_symbol_supplier.mm261 string module_path = GetLocalModulePath(module);
265 if (module_path.empty())
276 GetFileModificationTime(module_path.c_str());
284 stringWithFileSystemRepresentation:module_path.c_str()
285 length:module_path.length()];
/external/autotest/client/common_lib/cros/network/
Dinterface.py185 module_path = self._run('find '
190 module_path = 'Unknown (kernel might have modules disabled)'
191 return DeviceDescription(device_name, module_path)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dmessages.py1913 module_path = relative_to.__name__.split('.')[:-1]
1914 if not module_path:
1920 '.'.join(module_path), '', '', [module_path[-1]])
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.h146 const char *module_path, bool in_memory);
Dminidump_generator.cc1403 const char *module_path, bool in_memory) { in WriteCVRecord() argument
1407 const char *module_name = strrchr(module_path, '/'); in WriteCVRecord()
1432 MacFileUtilities::MachoID macho(module_path, in WriteCVRecord()
1441 FileID file_id(module_path); in WriteCVRecord()
/external/google-breakpad/src/client/solaris/handler/
Dminidump_generator.cc449 const char *module_path, in WriteCVRecord() argument
454 const char *module_name = module_path ? module_path : "<Unknown>"; in WriteCVRecord()
/external/autotest/frontend/shared/
Dresource_lib.py15 module_path, class_name = class_path.rsplit('.', 1)
16 module = __import__(module_path, {}, {}, [''])
/external/selinux/libsemanage/src/
Ddirect_api.c1584 char module_path[PATH_MAX]; in semanage_direct_extract() local
1598 module_path, in semanage_direct_extract()
1599 sizeof(module_path)); in semanage_direct_extract()
1604 if (access(module_path, F_OK) != 0) { in semanage_direct_extract()
1605 ERR(sh, "Module does not exist: %s", module_path); in semanage_direct_extract()