Home
last modified time | relevance | path

Searched refs:path_name (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
DRealPath.cpp45 Path path_name; in initialize() local
46 detail::get_pwd(path_name); in initialize()
47 path_name.native() += preferred_separator; in initialize()
48 path_name.native() += m_PathName; in initialize()
49 detail::canonicalize(path_name.native()); in initialize()
50 m_PathName = path_name.native(); in initialize()
/frameworks/compile/mclinker/unittests/
DFactoriesTest.cpp179 char path_name[100]; in TEST_F() local
180 sprintf(path_name, "/proj/mtk%d", counter); in TEST_F()
182 string(name), sys::fs::Path(string(path_name)), MCLDFile::Archive); in TEST_F()
195 char path_name[100]; in TEST_F() local
196 sprintf(path_name, "/proj/mtk%d", counter); in TEST_F()
198 string(name), sys::fs::Path(string(path_name)), MCLDFile::Archive); in TEST_F()
/frameworks/base/services/core/jni/
Dcom_android_server_fingerprint_FingerprintService.cpp191 char path_name[PATH_MAX] = {0}; in nativeSetActiveGroup() local
192 memcpy(path_name, pathData, pathSize); in nativeSetActiveGroup()
193 ALOG(LOG_VERBOSE, LOG_TAG, "nativeSetActiveGroup() path: %s, gid: %d\n", path_name, gid); in nativeSetActiveGroup()
194 int result = gContext.device->set_active_group(gContext.device, gid, path_name); in nativeSetActiveGroup()