Home
last modified time | relevance | path

Searched refs:path (Results 1801 - 1825 of 10000) sorted by relevance

1...<<71727374757677787980>>...400

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dhttp_client.c190 char *u, *addr, *port, *path; in http_client_url_parse() local
199 path = os_strchr(addr, '/'); in http_client_url_parse()
201 if (path == NULL) { in http_client_url_parse()
202 path = "/"; in http_client_url_parse()
204 *path = '\0'; /* temporary nul termination for address */ in http_client_url_parse()
205 if (port > path) in http_client_url_parse()
225 if (*path == '\0') { in http_client_url_parse()
227 *path = '/'; in http_client_url_parse()
230 *ret_path = path; in http_client_url_parse()
245 char *u, *path; in http_client_url() local
[all...]
/kernel/liteos_a/testsuites/unittest/process/fs/smoke/
H A DIt_process_fs_013.cpp35 std::string path; in ItProcessFs013() local
37 path = GenProcPidPath(1); in ItProcessFs013()
38 printf("path: %s\n", path.c_str()); in ItProcessFs013()
39 dirp = opendir(path.data()); in ItProcessFs013()
/third_party/astc-encoder/Test/DocSource/
H A Dconf.py10 # add these directories to sys.path here. If the directory is relative to the
11 # documentation root, use os.path.abspath to make it absolute, like shown here.
15 sys.path.insert(0, os.path.abspath('../'))
16 sys.path.insert(0, os.path.abspath('../testlib'))
/third_party/ltp/lib/newlib_tests/
H A Dtest_exec.c21 char path[4096]; in do_test() local
23 if (tst_get_path("test_exec_child", path, sizeof(path))) in do_test()
26 execve(path, argv, environ); in do_test()
/third_party/node/deps/v8/tools/
H A Dget_landmines.py14 sys.path.insert(0, os.path.abspath(
15 os.path.join(os.path.dirname(__file__), '..', 'build')))
/third_party/toybox/toys/other/
H A Dpwdx.c23 char *path = toybuf; in pwdx_main() local
26 if (!readlink0(path, toybuf, sizeof(toybuf))) { in pwdx_main()
27 path = strerror(errno); in pwdx_main()
31 xprintf("%s: %s\n", *optargs, path); in pwdx_main()
/third_party/skia/docs/examples/
H A DPath_serialize.cpp7 SkPath path, copy; in REG_FIDDLE() local
8 path.lineTo(6.f / 7, 2.f / 3); in REG_FIDDLE()
9 sk_sp<SkData> data = path.serialize(); in REG_FIDDLE()
11 SkDebugf("path is " "%s" "equal to copy\n", path == copy ? "" : "not "); in REG_FIDDLE()
H A DPath_dump_2.cpp7 SkPath path, copy; in REG_FIDDLE() local
8 path.lineTo(6.f / 7, 2.f / 3); in REG_FIDDLE()
9 path.dump(); in REG_FIDDLE()
13 SkDebugf("path is " "%s" "equal to copy\n", path == copy ? "" : "not "); in REG_FIDDLE()
H A DRegion_getBoundaryPath.cpp11 SkPath path; in REG_FIDDLE() local
12 region.getBoundaryPath(&path); in REG_FIDDLE()
13 path.offset(100, 0); in REG_FIDDLE()
14 canvas->drawPath(path, SkPaint()); in REG_FIDDLE()
/third_party/skia/bin/
H A Dlist-skia-bots10 path = os.path.join(os.path.dirname(__file__), os.pardir, 'infra', 'bots', 'tasks.json') variable
11 for j in sorted(json.load(open(path, 'r'))['jobs'].keys()):
/third_party/rust/crates/static-assertions-rs/src/
H A Dassert_trait.rs41 ($sub:path: $($super:path),+ $(,)?) => {
102 ($super:path: $($sub:path),+ $(,)?) => {
/kernel/linux/linux-5.10/net/iucv/
H A Daf_iucv.c175 * Always returns true if the socket is not connected (no iucv path for
185 return (skb_queue_len(&iucv->send_skb_q) < iucv->path->msglim); in iucv_below_msglim()
355 /* Terminate an IUCV path */
360 struct iucv_path *path = iucv->path; in iucv_sever_path() local
362 /* Whoever resets the path pointer, must sever and free it. */ in iucv_sever_path()
363 if (xchg(&iucv->path, NULL)) { in iucv_sever_path()
368 pr_iucv->path_sever(path, user_data); in iucv_sever_path()
370 pr_iucv->path_sever(path, NULL); in iucv_sever_path()
371 iucv_path_free(path); in iucv_sever_path()
910 iucv_send_iprm(struct iucv_path *path, struct iucv_message *msg, struct sk_buff *skb) iucv_send_iprm() argument
1159 iucv_process_message(struct sock *sk, struct sk_buff *skb, struct iucv_path *path, struct iucv_message *msg) iucv_process_message() argument
1597 iucv_callback_connreq(struct iucv_path *path, u8 ipvmid[8], u8 ipuser[16]) iucv_callback_connreq() argument
1694 iucv_callback_connack(struct iucv_path *path, u8 ipuser[16]) iucv_callback_connack() argument
1702 iucv_callback_rx(struct iucv_path *path, struct iucv_message *msg) iucv_callback_rx() argument
1746 iucv_callback_txdone(struct iucv_path *path, struct iucv_message *msg) iucv_callback_txdone() argument
1784 iucv_callback_connrej(struct iucv_path *path, u8 ipuser[16]) iucv_callback_connrej() argument
1802 iucv_callback_shutdown(struct iucv_path *path, u8 ipuser[16]) iucv_callback_shutdown() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_split_vars.c238 nir_deref_path path; in split_struct_derefs_impl() local
239 nir_deref_path_init(&path, deref, mem_ctx); in split_struct_derefs_impl()
242 for (unsigned i = 0; path.path[i]; i++) { in split_struct_derefs_impl()
243 if (path.path[i]->deref_type != nir_deref_type_struct) in split_struct_derefs_impl()
247 assert(glsl_type_is_struct_or_ifc(path.path[i - 1]->type)); in split_struct_derefs_impl()
248 assert(path.path[ in split_struct_derefs_impl()
611 deref_has_split_wildcard(nir_deref_path *path, struct array_var_info *info) deref_has_split_wildcard() argument
628 array_path_is_out_of_bounds(nir_deref_path *path, struct array_var_info *info) array_path_is_out_of_bounds() argument
790 nir_deref_path path; split_array_access_impl() local
1096 nir_deref_path path; mark_deref_used() local
1427 nir_deref_path path; vec_deref_is_oob() local
[all...]
/third_party/littlefs/scripts/
H A Dtest.py38 def openio(path, mode='r', buffering=-1):
40 if path == '-':
46 return open(path, mode, buffering)
52 self.path = config.pop('path')
149 def __init__(self, path, args={}):
150 self.path = path
151 self.name = os.path.basename(path)
[all...]
/kernel/linux/linux-5.10/tools/lib/api/fs/
H A Dcgroup.c15 char path_v1[PATH_MAX + 1], path_v2[PATH_MAX + 2], *path; in cgroupfs_find_mountpoint() local
56 path = path_v1; in cgroupfs_find_mountpoint()
58 path = path_v2; in cgroupfs_find_mountpoint()
62 if (strlen(path) < maxlen) { in cgroupfs_find_mountpoint()
63 strcpy(buf, path); in cgroupfs_find_mountpoint()
/kernel/linux/linux-6.6/drivers/staging/rtl8723bs/core/
H A Drtw_debug.c46 static void dump_4_rf_regs(struct adapter *adapter, int path, int offset) in dump_4_rf_regs() argument
52 reg[i] = rtw_hal_read_rfreg(adapter, path, offset + i, in dump_4_rf_regs()
61 int i, path = 0; in rf_reg_dump() local
65 netdev_dbg(adapter->pnetdev, "RF_Path(%x)\n", path); in rf_reg_dump()
67 dump_4_rf_regs(adapter, path, i); in rf_reg_dump()
/kernel/liteos_a/testsuites/unittest/process/plimits/smoke/
H A DIt_process_plimits_pid_005.cpp47 std::string path = "/proc/plimits/test"; in ItProcessPlimitsPid005() local
54 int ret = mkdir(path.c_str(), S_IFDIR | mode); in ItProcessPlimitsPid005()
69 ret = write(fd, path.c_str(), (path.length())); in ItProcessPlimitsPid005()
75 ret = rmdir(path.c_str()); in ItProcessPlimitsPid005()
/third_party/ffmpeg/tools/python/
H A Dconvert.py29 parser.add_argument('infile', help='path to the deep learning model with weights')
37 if not os.path.isfile(args.infile):
41 if not os.path.exists(args.outdir):
45 basefile = os.path.split(args.infile)[1]
46 basefile = os.path.splitext(basefile)[0]
47 outfile = os.path.join(args.outdir, basefile) + '.model'
/third_party/harfbuzz/
H A Dinstall.py41 src_file = os.path.join(src_path, file)
42 dst_file = os.path.join(dst_path, file)
48 if not os.path.exists(target_dir):
71 harfbuzz_path.add_argument('--gen-dir', help='generate path of log', required=True)
72 harfbuzz_path.add_argument('--source-dir', help='generate path of log', required=True)
74 tar_file_path = os.path.join(args.source_dir, "harfbuzz-2.8.2.tar.xz")
75 target_dir = os.path.join(args.gen_dir, "harfbuzz-2.8.2")
/third_party/libuv/docs/code/proc-streams/
H A Dmain.c20 char path[size]; in main() local
21 uv_exepath(path, &size); in main()
22 strcpy(path + (strlen(path) - strlen("proc-streams")), "test"); in main()
25 args[0] = path; in main()
/third_party/libpng/
H A Dinstall.py45 src_file = os.path.join(src_path, file)
46 dst_file = os.path.join(dst_path, file)
52 if not os.path.exists(target_dir):
78 libpng_path.add_argument('--gen-dir', help='generate path of log', required=True)
79 libpng_path.add_argument('--source-dir', help='generate path of log', required=True)
81 tar_file_path = os.path.join(args.source_dir, "libpng-1.6.38.tar.gz")
82 target_dir = os.path.join(args.gen_dir, "libpng-1.6.38")
/third_party/mesa3d/bin/
H A Dmeson-cmd-extract.py45 def load_config(path: pathlib.Path) -> configparser.ConfigParser:
48 with path.open() as f:
76 path = pathlib.Path(args.build_dir, 'meson-private', 'cmd_line.txt')
77 if not path.exists():
82 conf = load_config(path)
/third_party/jsoncpp/
H A Dinstall.py24 if os.path.exists(extract_path):
38 if not os.path.exists(target_dir):
58 file_path = os.path.join(args.source_file, patch)
64 libpng_path.add_argument('--gen-dir', help='generate path of jsoncpp')
67 tar_file_path = os.path.join(args.source_file, "jsoncpp-1.9.5.tar.gz")
68 target_dir = os.path.join(args.gen_dir, "jsoncpp-1.9.5")
/third_party/ltp/testcases/cve/
H A Dcve-2022-4378.c27 const char *path; member
52 if (access(tc->path, W_OK)) { in run()
53 tst_res(TCONF | TERRNO, "Skipping %s", tc->path); in run()
57 tst_res(TINFO, "Writing whitespace to %s", tc->path); in run()
59 fd = SAFE_OPEN(tc->path, O_WRONLY); in run()
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/
H A Dhelpers.js12 const path = require('path');
17 const BASE_DIR = path.join(path.dirname(__dirname), 'test_data');
18 const DB_DIR = path.join(BASE_DIR, 'fake_db');
56 const absPath = path.join(BASE_DIR, expectedPath);

Completed in 10 milliseconds

1...<<71727374757677787980>>...400