Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp775 explicit Passwd(JNIEnv* env) : mEnv(env), mResult(NULL) { in Passwd()
781 return process("getpwnam_r", getpwnam_r(name, &mPwd, mBuffer.get(), mBufferSize, &mResult)); in getpwnam()
785 return process("getpwuid_r", getpwuid_r(uid, &mPwd, mBuffer.get(), mBufferSize, &mResult)); in getpwuid()
789 return mResult; in get()
794 if (mResult == NULL) { in process()
799 return makeStructPasswd(mEnv, *mResult); in process()
806 struct passwd* mResult; member in Passwd