Searched defs:ret_len (Results 1 - 2 of 2) sorted by relevance
/forgerock/web-agents-v4/source/iis/ |
H A D | agent.c | 64 int ret_len, out_len = wstr != NULL ? local 71 ret_len = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, tmp, (DWORD) out_len, NULL, NULL); 72 if (outlen) *outlen = ret_len - 1; 81 int ret_len, out_len = str != NULL ? MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0) : 0; local 87 ret_len = MultiByteToWideChar(CP_UTF8, 0, str, -1, tmp, (DWORD) out_len); 88 if (outlen) *outlen = ret_len - 1;
|
/forgerock/web-agents-v4/source/ |
H A D | utility.c | 229 int i, substring_len, rc, ret_len = 0; local 245 ret_tmp = realloc(result, ret_len + substring_len + 1); 257 memcpy(result + ret_len, rslt, substring_len); 258 result[ret_len + substring_len] = '\0'; 259 ret_len += substring_len + 1;
|
Completed in 40 milliseconds