Lines Matching refs:currLen
125 uint32_t currLen = 0;
134 currLen = rootPath - sandbox->rootPath;
136 if (rootLen > (currLen + userIdLen)) {
137 len = sprintf_s(buffer + currLen, bufferLen - currLen, "%d%s",
138 uid, sandbox->rootPath + currLen + userIdLen);
140 len = sprintf_s(buffer + currLen, bufferLen - currLen, "%d", uid);
142 APPSPAWN_CHECK(len > 0 && ((uint32_t)len < (bufferLen - currLen)), return ret,
144 currLen += (uint32_t)len;
146 buffer[currLen] = '\0';