Home
last modified time | relevance | path

Searched refs:readLen (Results 1 - 3 of 3) sorted by relevance

/commonlibrary/utils_lite/js/builtin/kvstorekit/src/
H A Dnativeapi_kv_impl.c119 int readLen = read(fileHandle, value, VALUE_MAX_LEN); in GetValue() local
122 if (readLen < 0) { in GetValue()
125 value[readLen] = '\0'; in GetValue()
/commonlibrary/utils_lite/js/builtin/filekit/src/
H A Dnativeapi_fs_impl.c361 int readLen = read(fileHandle, text, len); in ReadFileImpl() local
363 *actualLen = readLen; in ReadFileImpl()
364 return (readLen < 0) ? ERROR_CODE_IO : NATIVE_SUCCESS; in ReadFileImpl()
H A Dnativeapi_fs.cpp323 size_t readLen = (info.st_size > length) ? length : info.st_size; in ReadTextInner() local
324 if (readLen > TEXT_MAX_READ_LEN) { in ReadTextInner()
327 char* text = reinterpret_cast<char *>(malloc(readLen + 1)); in ReadTextInner()
332 ret = ReadFileImpl(g_uriFullPath, text, readLen, position, &actualLen); in ReadTextInner()

Completed in 3 milliseconds