Searched refs:mResult (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 839 explicit Passwd(JNIEnv* env) : mEnv(env), mResult(NULL) { in Passwd() 850 return process("getpwnam_r", getpwnam_r(name, &mPwd, mBuffer.get(), mBufferSize, &mResult)); in getpwnam() 854 return process("getpwuid_r", getpwuid_r(uid, &mPwd, mBuffer.get(), mBufferSize, &mResult)); in getpwuid() 858 return mResult; in get() 863 if (mResult == NULL) { in process() 868 return makeStructPasswd(mEnv, *mResult); in process() 875 struct passwd* mResult; member in Passwd
|