Home
last modified time | relevance | path

Searched refs:last_path (Results 1 – 4 of 4) sorted by relevance

/external/wpa_supplicant_8/src/utils/
Dwpa_debug.c523 static char *last_path = NULL; variable
532 if (!last_path) in wpa_debug_reopen_file()
535 tmp = os_strdup(last_path); in wpa_debug_reopen_file()
557 if (last_path == NULL || os_strcmp(last_path, path) != 0) { in wpa_debug_open_file()
559 os_free(last_path); in wpa_debug_open_file()
560 last_path = os_strdup(path); in wpa_debug_open_file()
604 os_free(last_path); in wpa_debug_close_file()
605 last_path = NULL; in wpa_debug_close_file()
/external/autotest/client/deps/glbench/src/
Dfilepath.cc142 FilePath last_path = full_path; in CreateDirectory() local
144 for (FilePath path = full_path.DirName(); path.value() != last_path.value(); in CreateDirectory()
147 last_path = path; in CreateDirectory()
/external/tensorflow/tensorflow/python/training/
Dcheckpoint_management_test.py552 last_path = manager.save(checkpoint_number=32)
553 self.assertIn("-32", last_path)
554 self.assertEqual(last_path, manager.latest_checkpoint)
556 last_path, checkpoint_management.latest_checkpoint(directory))
559 self.assertEqual([path, last_path], state.all_model_checkpoint_paths)
/external/libchrome/base/files/
Dfile_util_posix.cc707 FilePath last_path = full_path; in CreateDirectoryAndGetError() local
710 path.value() != last_path.value(); path = path.DirName()) { in CreateDirectoryAndGetError()
712 last_path = path; in CreateDirectoryAndGetError()