/kernel/linux/linux-6.6/fs/smb/server/mgmt/ |
H A D | share_config.h | 11 #include <linux/path.h> 16 char *path; member 22 struct path vfs_path;
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | umh.h | 23 const char *path; member 34 call_usermodehelper(const char *path, char **argv, char **envp, int wait); 37 call_usermodehelper_setup(const char *path, char **argv, char **envp,
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | test_d_path.c | 22 int BPF_PROG(prog_stat, struct path *path, struct kstat *stat, in BPF_PROG() argument 36 ret = bpf_d_path(path, paths_stat[cnt], MAX_PATH_LEN); in BPF_PROG()
|
/kernel/liteos_a/fs/proc/src/ |
H A D | proc_shellcmd.c | 56 const char *path = NULL; in OsShellCmdWriteProc() local 65 path = argv[2]; // 2: index of path in OsShellCmdWriteProc() 68 if ((realpath(path, realPath) == NULL) || (strncmp(realPath, rootProcDir, strlen(rootProcDir)) != 0)) { in OsShellCmdWriteProc() 93 PRINT_ERR("writeproc [data] [>>] [path]\n"); in OsShellCmdWriteProc()
|
/kernel/liteos_a/testsuites/unittest/container/smoke/ |
H A D | It_time_container_008.cpp | 39 char path[STR_LEN] = {0}; in WriteProcTime() local 46 ret = sprintf_s(path, STR_LEN, "/proc/%d/time_offsets", pid); in WriteProcTime() 51 int fd = open(path, O_WRONLY); in WriteProcTime()
|
/third_party/curl/lib/ |
H A D | cookie.h | 34 char *path; /* path = <this> which is in Set-Cookie: */ member 35 char *spath; /* sanitized cookie path */ 105 * Add a cookie to the internal list of cookies. The domain and path arguments 112 const char *domain, const char *path, 117 const char *path, bool secure);
|
/third_party/icu/tools/unicode/c/genprops/ |
H A D | genprops.h | 40 virtual void writeCSourceFile(const char *path, UErrorCode &errorCode); 41 virtual void writeJavaSourceFile(const char *path, UErrorCode &errorCode); 42 virtual void writeBinaryData(const char *path, UBool withCopyright, UErrorCode &errorCode);
|
/third_party/ltp/testcases/kernel/containers/userns/ |
H A D | userns05.c | 31 char path[BUFSIZ]; in getusernsidbypid() local 35 sprintf(path, "/proc/%d/ns/user", pid); in getusernsidbypid() 37 SAFE_READLINK(path, userid, BUFSIZ); in getusernsidbypid()
|
H A D | userns07.c | 66 char path[BUFSIZ]; in run() local 78 sprintf(path, "/proc/%d/setgroups", cpid); in run() 79 SAFE_FILE_PRINTF(path, "deny"); in run()
|
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
H A D | dev_video.c | 31 static int try_ASUS_camera(char *path, char *value) in try_ASUS_camera() argument 37 ASUS_camera = open(path, O_WRONLY); in try_ASUS_camera() 39 fprintf(stderr, "Cannot open %s: %s\n", path, strerror(errno)); in try_ASUS_camera()
|
/third_party/mesa3d/src/gallium/frontends/clover/llvm/ |
H A D | util.hpp | 82 const std::string path = debug_get_option("CLOVER_DEBUG_FILE", in log() local 84 if (path == "stderr") in log() 87 std::ofstream(path + suffix, std::ios::app) << s; in log()
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
H A D | test_differential_fuzz_library.js | 13 const path = require('path'); 15 const libPath = path.resolve( 16 path.join(__dirname, '..', 'resources', 'differential_fuzz_library.js'));
|
/third_party/node/deps/v8/tools/dev/ |
H A D | gen-tags.py | 81 for path in paths: 82 for root, dirs, files in os.walk(path): 85 fullpath = os.path.join(root, file)
|
/third_party/node/test/parallel/ |
H A D | test-child-process-fork-exec-path.js | 30 const path = require('path'); 36 const copyPath = path.join(tmpdir.path, 'node-copy.exe');
|
H A D | test-debugger-clear-breakpoints.js | 10 const path = require('path'); 14 const scriptFullPath = fixtures.path('debugger', 'break.js'); 15 const script = path.relative(process.cwd(), scriptFullPath);
|
H A D | test-fs-stream-construct-compat-error-write.js | 28 fs.open(that.path, that.flags, that.mode, (err, fd) => { 34 fs.open(`${tmpdir.path}/dummy`, 'wx+', common.mustCall((err, fd) => { 38 const w = new WriteStream(`${tmpdir.path}/dummy`,
|
H A D | test-fs-watchfile-bigint.js | 10 const path = require('path'); 14 const enoentFile = path.join(tmpdir.path, 'non-existent-file');
|
H A D | test-http-agent-maxsockets.js | 20 function get(path, callback) { 25 path: path
|
H A D | test-repl-history-perm.js | 16 const path = require('path'); 20 // Invoking the REPL should create a repl history file at the specified path 36 const replHistoryPath = path.join(tmpdir.path, '.node_repl_history');
|
/third_party/node/test/pummel/ |
H A D | test-fs-watch-file-slow.js | 25 const path = require('path'); 31 const FILENAME = path.join(tmpdir.path, 'watch-me');
|
/third_party/node/test/tick-processor/ |
H A D | test-tick-processor-polyfill-brokenfile.js | 18 const path = require('path'); 21 const LOG_FILE = path.join(tmpdir.path, 'tick-processor.log');
|
H A D | tick-processor-base.js | 5 const path = require('path'); 10 const LOG_FILE = path.join(tmpdir.path, 'tick-processor.log');
|
/third_party/node/test/wasi/ |
H A D | test-wasi-stdio.js | 6 const { join } = require('path'); 10 const stdinFile = join(tmpdir.path, 'stdin.txt'); 11 const stdoutFile = join(tmpdir.path, 'stdout.txt'); 12 const stderrFile = join(tmpdir.path, 'stderr.txt');
|
/third_party/musl/scripts/ |
H A D | install.py | 18 dest_dir = os.path.dirname(dest) 19 if not os.path.exists(dest_dir): 28 help = 'The header source path', 38 help = 'The ld file path', 43 help = 'The crtplus file path', 48 if os.path.basename(args.input) == 'crtn.o':
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | ld_log.c | 60 char *path = get_app_name(buf, PROCESS_NAME_LEN); in get_ld_log_value() local 61 if (!path) { in get_ld_log_value() 66 strcat(app_param_name, path); in get_ld_log_value()
|