/test/xts/acts/kernel_lite/utils/ |
H A D | utils.cpp | 107 static int StartElf(const char *fname, char * const argv[], char * const envp[])
in StartElf() argument 115 int rt = execve(fname, argv, envp);
in StartElf() 126 int RunElf(const char *fname, char * const argv[], char * const envp[], int timeoutSec)
in RunElf() argument 137 int pid = StartElf(fname, argv, envp);
in RunElf() 169 int StartExecveError(const char *fname, char * const argv[], char * const envp[])
in StartExecveError() argument 176 int rt = execve(fname, argv, envp);
in StartExecveError()
|
H A D | libfs.cpp | 57 char *fname = entry->d_name;
in RemoveDir() local 58 if (!strcmp(fname, ".") || !strcmp(fname, "..")) {
in RemoveDir() 62 sprintf(subDir, "%s/%s", dirname, fname);
in RemoveDir()
|
H A D | utils.h | 128 * input: fname, argv, envp -- parameters for execve 135 int RunElf(const char* fname, char* const argv[], char* const envp[], int timeoutSec = 5); 139 * input: fname, argv, envp -- parameters for execve 146 int StartExecveError(const char* fname, char* const argv[], char* const envp[]);
|
/test/xts/hats/kernel/posix_interface/interface_gn/utils/ |
H A D | libfs.cpp | 57 std::string fname = entry->d_name;
in RemoveDir() local 58 if (!strcmp(fname, ".") || !strcmp(fname, "..")) {
in RemoveDir() 62 size_t rt = sprintf_s(subDir, sizeof(subDir), "%s/%s", dirname, fname.c_str());
in RemoveDir()
|
H A D | utils.cpp | 175 static int StartElf(const char *fname, char * const argv[], char * const envp[])
in StartElf() argument 183 int rt = execve(fname, argv, envp);
in StartElf() 194 int RunElf(const char *fname, char * const argv[], char * const envp[], int timeoutSec)
in RunElf() argument 206 int pid = StartElf(fname, argv, envp);
in RunElf() 240 int StartExecveError(const char *fname, char * const argv[], char * const envp[])
in StartExecveError() argument 248 int rt = execve(fname, argv, envp);
in StartExecveError()
|
H A D | utils.h | 86 * input: fname, argv, envp -- parameters for execve 93 int RunElf(const char* fname, char* const argv[], char* const envp[], int timeoutSec = 5); 97 * input: fname, argv, envp -- parameters for execve 104 int StartExecveError(const char* fname, char* const argv[], char* const envp[]);
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | scheduler.py | 546 fname, _ = get_filename_extension(test_set) 547 uid = unique_id("Scheduler", fname) 548 root = Descriptor(uuid=uid, name=fname,
|
/test/xts/acts/hiviewdfx/hiappeventtest/hiappeventcpptest/ |
H A D | HiAppEventCPPTest.cpp | 1127 string fname = s; in HWTEST_F() local 1128 string cmd = "dd if=/dev/zero of=/data/test/hiappevent/" + fname + " bs=11M count=1"; in HWTEST_F() 1176 string fname = s; in HWTEST_F() local 1177 string cmd = "dd if=/dev/zero of=/data/test/hiappevent/" + fname + " bs=1.5M count=1"; in HWTEST_F()
|