Home
last modified time | relevance | path

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

/cts/hostsidetests/jvmti/attaching/host/src/android/jvmti/cts/
DJvmtiAttachingHostTest.java98 String pwd = device.executeShellCommand( in testJvmtiAttachEarly() local
100 if (pwd == null) { in testJvmtiAttachEarly()
103 pwd = pwd.trim(); in testJvmtiAttachEarly()
104 if (pwd.isEmpty()) { in testJvmtiAttachEarly()
113 installLibToDataData(device, pkg, abiName, apk, pwd, AGENT, in testJvmtiAttachEarly()
174 String pwd = getPwd(device, pkg); in testJvmtiAgentAppExternal() local
180 installLibToDataData(device, pkg, abiName, apk, pwd, AGENT, in testJvmtiAgentAppExternal()
201 String pwd = device.executeShellCommand( in getPwd() local
203 if (pwd == null) { in getPwd()
206 pwd = pwd.trim(); in getPwd()
[all …]
/cts/hostsidetests/jvmti/base/host/src/android/jvmti/cts/
DJvmtiHostTest.java169 String pwd = mDevice.executeShellCommand( in prepare() local
171 if (pwd == null) { in prepare()
174 pwd = pwd.trim(); in prepare()
175 if (pwd.isEmpty()) { in prepare()
179 mAgentInDataData = installLibToDataData(pwd, "libctsjvmtiagent.so"); in prepare()
/cts/common/device-side/util/jni/
Dandroid_cts_FileUtils.cpp83 struct passwd *pwd = getpwuid(uid); in android_cts_FileUtils_getUserName() local
84 return env->NewStringUTF(pwd->pw_name); in android_cts_FileUtils_getUserName()