Home
last modified time | relevance | path

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 Dlseek.cpp42 auto [resGetThirdArg, whence] = NVal(env, funcArg[NARG_POS::THIRD]).ToInt32(); in GetLseekArg()
43 if (!resGetThirdArg) { in GetLseekArg()
H A Dposix_fallocate.cpp44 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 Dmove.cpp78 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 Dcopydir.cpp65 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 Dmovedir.cpp95 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()