Searched refs:pathOrFdFromJsArg (Results 1 - 8 of 8) sorted by relevance
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/ |
H A D | stat_v9.cpp | 42 static tuple<bool, FileInfo> ParseJsFile(napi_env env, napi_value pathOrFdFromJsArg) in ParseJsFile() argument 44 auto [isPath, path, ignore] = NVal(env, pathOrFdFromJsArg).ToUTF8StringPath(); in ParseJsFile() 48 auto [isFd, fd] = NVal(env, pathOrFdFromJsArg).ToInt32(); in ParseJsFile()
|
H A D | truncate_v9.cpp | 35 static tuple<bool, FileInfo> ParseJsFile(napi_env env, napi_value pathOrFdFromJsArg) in ParseJsFile() argument 37 auto [isPath, path, ignore] = NVal(env, pathOrFdFromJsArg).ToUTF8StringPath(); in ParseJsFile() 41 auto [isFd, fd] = NVal(env, pathOrFdFromJsArg).ToInt32(); in ParseJsFile()
|
H A D | copy_file.cpp | 102 static tuple<bool, FileInfo> ParseJsOperand(napi_env env, NVal pathOrFdFromJsArg) in ParseJsOperand() argument 104 auto [isPath, path, ignore] = pathOrFdFromJsArg.ToUTF8StringPath(); in ParseJsOperand() 109 auto [isFd, fd] = pathOrFdFromJsArg.ToInt32(); in ParseJsOperand()
|
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/properties/ |
H A D | stat.cpp | 31 static tuple<bool, FileInfo> ParseJsFile(napi_env env, napi_value pathOrFdFromJsArg) in ParseJsFile() argument 33 auto [isPath, path, ignore] = NVal(env, pathOrFdFromJsArg).ToUTF8StringPath(); in ParseJsFile() 37 auto [isFd, fd] = NVal(env, pathOrFdFromJsArg).ToInt32(); in ParseJsFile()
|
H A D | truncate.cpp | 30 static tuple<bool, FileInfo> ParseJsFile(napi_env env, napi_value pathOrFdFromJsArg) in ParseJsFile() argument 32 auto [isPath, path, ignore] = NVal(env, pathOrFdFromJsArg).ToUTF8StringPath(); in ParseJsFile() 36 auto [isFd, fd] = NVal(env, pathOrFdFromJsArg).ToInt32(); in ParseJsFile()
|
H A D | copy_file.cpp | 186 static tuple<bool, FileInfo> ParseJsOperand(napi_env env, NVal pathOrFdFromJsArg)
in ParseJsOperand() argument 188 auto [isPath, path, ignore] = pathOrFdFromJsArg.ToUTF8StringPath();
in ParseJsOperand() 193 auto [isFd, fd] = pathOrFdFromJsArg.ToInt32();
in ParseJsOperand()
|
H A D | copy.h | 130 static tuple<bool, std::string> ParseJsOperand(napi_env env, NVal pathOrFdFromJsArg);
|
H A D | copy.cpp | 140 tuple<bool, std::string> Copy::ParseJsOperand(napi_env env, NVal pathOrFdFromJsArg) in ParseJsOperand() argument 142 auto [succ, uri, ignore] = pathOrFdFromJsArg.ToUTF8StringPath(); in ParseJsOperand()
|
Completed in 5 milliseconds