Lines Matching refs:info
246 struct stat info = {0};
253 ret = StatImpl(g_uriFullPath, &info);
258 if (recursive && (S_ISDIR(info.st_mode))) {
264 JSI::SetNumberProperty(result, FILE_LENGTH, info.st_size);
265 JSI::SetNumberProperty(result, FILE_LAST_MODIFIED_TIME, info.st_mtime);
267 if (S_ISDIR(info.st_mode)) {
318 struct stat info = {0};
319 ret = StatImpl(g_uriFullPath, &info);
323 size_t readLen = (info.st_size > length) ? length : info.st_size;
399 struct stat info = {0};
400 int ret = StatImpl(path, &info);
404 void* text = malloc(info.st_size + 1);