Home
last modified time | relevance | path

Searched refs:mod_path (Results 1 – 6 of 6) sorted by relevance

/external/ltp/lib/
Dtst_module.c32 const char *mod_name, char **mod_path) in tst_module_exists() argument
36 if (mod_path != NULL) in tst_module_exists()
37 *mod_path = strdup(mod_name); in tst_module_exists()
74 if (mod_path != NULL) in tst_module_exists()
75 *mod_path = buf; in tst_module_exists()
83 char *mod_path = NULL; in tst_module_load() local
84 tst_module_exists(cleanup_fn, mod_name, &mod_path); in tst_module_load()
94 mod_argv[1] = mod_path; in tst_module_load()
101 free(mod_path); in tst_module_load()
/external/ltp/testcases/lib/
Dtest.sh349 local mod_path="$LTPROOT/testcases/bin/$mod_name"
350 if [ -f "$mod_path" ]; then
351 TST_MODPATH="$mod_path"
356 mod_path="$TST_STARTWD/$mod_name"
357 if [ -f "$mod_path" ]; then
358 TST_MODPATH="$mod_path"
/external/python/cpython2/Lib/test/
Dtest_zipimport.py226 mod_path = packdir2 + TESTMOD
227 mod_name = module_path_to_dotted_name(mod_path)
231 self.assertEqual(zi.get_source(mod_path), None)
232 self.assertEqual(zi.get_filename(mod_path), mod.__file__)
270 mod_path = TESTPACK2 + os.sep + TESTMOD
271 mod_name = module_path_to_dotted_name(mod_path)
275 self.assertEqual(zi.get_source(mod_path), None)
276 self.assertEqual(zi.get_filename(mod_path), mod.__file__)
Dtest_xpickle.py25 mod_path = os.path.abspath(os.path.join(os.path.dirname(__file__), variable
28 exec compile(open(mod_path).read(), mod_path, 'exec') in pickletester.__dict__
/external/ltp/include/old/
Dold_module.h48 char **mod_path);
/external/libcxx/utils/libcxx/test/
Dtarget_info.py213 mod_path, _, info = info_str.rpartition('.')
214 mod = importlib.import_module(mod_path)