Lines Matching refs:retLen
110 int retLen = SystemReadParam(queryName, result, &bufferSize);
111 if (retLen != 0 || bufferSize == 0 || bufferSize > PARAM_BUF_LEN - 1) {
116 int retLen = GetParameter(queryName, NULL, result, size);
117 if (retLen <= 0 || retLen > PARAM_BUF_LEN - 1) {
120 result[retLen] = '\0';
200 int retLen = SystemReadParam(LIBC_HOOK_PARAM, paramOutBuf, &size);
201 if (retLen != 0 || size <= 0) {
204 retLen = (int)size;
207 int retLen = GetParameter(LIBC_HOOK_PARAM, defStrValue, paramOutBuf, PARAM_BUF_LEN);
208 if (retLen == 0) {
216 retLen = GetMallocHookStartupValue(paramOutBuf, targetProcName, PARAM_BUF_LEN);
217 if (retLen == -1) {