/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | utimendk.cpp | 46 char strTemp[length];
in Utime() local 47 napi_get_value_string_utf8(env, args[0], strTemp, length, &stresult);
in Utime() 49 int fd = open(strTemp, O_CREAT, PARAM_0777);
in Utime() 53 stat(strTemp, &statinfo);
in Utime() 56 if (utime(strTemp, &ubuf) == PARAM_0) {
in Utime() 57 stat(strTemp, &statinfo);
in Utime()
|
H A D | direntndk.cpp | 68 char *strTemp = static_cast<char *>(malloc(sizeof(char) * length));
in Scandir64() local 69 napi_get_value_string_utf8(env, args[0], strTemp, length, &stresult);
in Scandir64() 70 int fd = open(strTemp, O_RDWR);
in Scandir64() 76 int total = scandir64(strTemp, &namelist, PARAM_0, alphasort);
in Scandir64() 93 char *strTemp = static_cast<char *>(malloc(sizeof(char) * length));
in Scandir() local 94 napi_get_value_string_utf8(env, args[0], strTemp, length, &stresult);
in Scandir() 95 int fd = open(strTemp, O_RDWR);
in Scandir() 101 int total = scandir(strTemp, &namelist, PARAM_0, alphasort);
in Scandir()
|
H A D | stdiondk.cpp | 294 char *strTemp = static_cast<char *>(malloc(sizeof(char) * length));
in WriteChk() local 295 napi_get_value_string_utf8(env, args[0], strTemp, length, &stresult);
in WriteChk() 298 int fp = open(strTemp, O_WRONLY | O_CREAT, PARAM_0777);
in WriteChk() 317 char *strTemp = static_cast<char *>(malloc(sizeof(char) * length));
in PwriteChk() local 318 napi_get_value_string_utf8(env, args[0], strTemp, length, &stresult);
in PwriteChk() 321 int fp = open(strTemp, O_WRONLY | O_CREAT, PARAM_0777);
in PwriteChk()
|
H A D | unistdndk.cpp | 301 char *strTemp = static_cast<char *>(malloc(sizeof(char) * length));
in GetOpt() local 303 napi_get_value_string_utf8(env, args[PARAM_0], strTemp, length, &strResult);
in GetOpt() 308 char *optArgv[] = {cmdline, strTemp, para};
in GetOpt() 888 char strTemp[] = "/data/storage/el2/base/files/Fzl.txt";
in Fexecve() local 889 char *const argv[] = {strTemp, nullptr};
in Fexecve() 1198 char *strTemp = static_cast<char *>(malloc(sizeof(char) * length));
in LChOwn() local 1200 napi_get_value_string_utf8(env, args[PARAM_0], strTemp, length, &stresult);
in LChOwn() 1201 int value = lchown(strTemp, TEST_ID_VALUE, TEST_ID_VALUE);
in LChOwn() 1814 char strTemp[length];
in Close() local 1815 napi_get_value_string_utf8(env, args[PARAM_0], strTemp, lengt in Close() [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl32/entry/src/main/cpp/ |
H A D | fnmatchndk32.cpp | 767 char strTemp[length];
in UTime64() local 768 napi_get_value_string_utf8(env, args[0], strTemp, length, &stresult);
in UTime64() 769 int fileDescribe = open(strTemp, O_CREAT);
in UTime64() 771 stat(strTemp, &statinfo);
in UTime64() 774 if (__utime64(strTemp, &ubuf) == PARAM_0) {
in UTime64() 775 stat(strTemp, &statinfo);
in UTime64()
|
/test/xts/acts/kernel_lite/io_posix/src/ |
H A D | IoTestStdio.cpp | 515 char strTemp[50] = {0}; in HWTEST_F() local 517 ret = FormatVsscanf(str, "%s has %d words", strTemp, &i); in HWTEST_F() 519 EXPECT_STREQ(strTemp, "helloworld"); in HWTEST_F()
|