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