Searched refs:resGetThirdArg (Results 1 - 5 of 5) sorted by relevance
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/ |
H A D | posix_fallocate.cpp | 44 auto [resGetThirdArg, len] = NVal(env, funcArg[NARG_POS::THIRD]).ToInt32(); in GetPosixFallocateArg() 45 if (!resGetThirdArg) { in GetPosixFallocateArg()
|
H A D | lseek.cpp | 42 auto [resGetThirdArg, whence] = NVal(env, funcArg[NARG_POS::THIRD]).ToInt32(); in GetLseekArg() 43 if (!resGetThirdArg) { in GetLseekArg()
|
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/properties/ |
H A D | move.cpp | 75 bool resGetThirdArg = false; in ParseJsOperand() local 76 tie(resGetThirdArg, mode) = NVal(env, funcArg[NARG_POS::THIRD]).ToInt32(mode); in ParseJsOperand() 77 if (!resGetThirdArg || (mode != MODE_FORCE_MOVE && mode != MODE_THROW_ERR)) { in ParseJsOperand()
|
H A D | copydir.cpp | 79 bool resGetThirdArg = false;
in ParseAndCheckJsOperand() local 80 tie(resGetThirdArg, mode) = NVal(env, funcArg[NARG_POS::THIRD]).ToInt32(mode);
in ParseAndCheckJsOperand() 81 if (!resGetThirdArg || (mode < COPYMODE_MIN || mode > COPYMODE_MAX)) {
in ParseAndCheckJsOperand()
|
H A D | movedir.cpp | 96 bool resGetThirdArg = false;
in ParseJsOperand() local 97 tie(resGetThirdArg, mode) = NVal(env, funcArg[NARG_POS::THIRD]).ToInt32(mode);
in ParseJsOperand() 98 if (!resGetThirdArg || (mode < DIRMODE_MIN || mode > DIRMODE_MAX)) {
in ParseJsOperand()
|
Completed in 3 milliseconds