| /third_party/rust/crates/rustix/src/termios/ |
| H A D | tty.rs | 15 crate::ffi::CString, crate::path::SMALL_PATH_BUFFER_SIZE, alloc::vec::Vec,
|
| /third_party/rust/crates/static-assertions-rs/src/ |
| H A D | assert_obj_safe.rs | 73 ($($xs:path),+ $(,)?) => {
|
| /third_party/selinux/libselinux/man/man3/ |
| H A D | avc_open.3 | 55 SELinux status state in read-only mode to avoid system calls during the cache hit code path.
|
| /third_party/rust/crates/unicode-ident/generate/src/ |
| H A D | write.rs | 10 // $ cargo run --manifest-path generate/Cargo.toml
|
| /third_party/rust/crates/syn/tests/macros/ |
| H A D | mod.rs | 3 #[path = "../debug/mod.rs"]
|
| /third_party/selinux/libselinux/man/man5/ |
| H A D | selabel_media.5 | 44 A non-null value for this option specifies a path to a file that will be opened in lieu of the standard \fImedia\fR contexts file.
|
| /third_party/vk-gl-cts/scripts/egl/ |
| H A D | enums.py | 56 writeInlFile(os.path.join(EGL_WRAPPER_DIR, "eglwEnums.inl"), indentLines(map(enumDefinition, iface.enums)))
|
| /third_party/vk-gl-cts/scripts/opengl/ |
| H A D | gen_enums.py | 33 writeInlFile(os.path.join(OPENGL_INC_DIR, "glwEnums.inl"), src)
|
| H A D | gen_versions.py | 33 writeInlFile(os.path.join(OPENGL_INC_DIR, "glwVersions.inl"), src)
|
| /third_party/vk-gl-cts/scripts/src_util/ |
| H A D | check_file_size_limit.py | 30 fileSize = os.path.getsize(file)
|
| /third_party/vk-gl-cts/scripts/verify/ |
| H A D | message.py | 36 return prefix[self.type] + os.path.basename(self.filename) + ": " + self.message
|
| /third_party/vk-gl-cts/targets/raspi/ |
| H A D | raspi.cmake | 48 get_filename_component(SYSLIB_PATH ${BCM_HOST_LIBRARY} PATH)
|
| /third_party/vk-gl-cts/targets/x11_egl/ |
| H A D | x11_egl.cmake | 34 # GLES1 libraries and headers, this way user can override search path by
|
| /third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
| H A D | vksCacheBuilder.hpp | 33 const std::string& path,
|
| /foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/ |
| H A D | gltf2_importer.cpp | 908 string path; in ResolveNodePath() local 917 path.resize(length); in ResolveNodePath() 919 const auto begin = path.begin(); in ResolveNodePath() 920 path.replace(begin + static_cast<string::difference_type>(length), in ResolveNodePath() 926 path[length] = '/'; in ResolveNodePath() 928 path.replace(begin + static_cast<string::difference_type>(length), in ResolveNodePath() 933 return path; in ResolveNodePath() 1405 GLTF2::Accessor& outputAccessor, GLTF2::AnimationPath path, AnimationOutputComponent& outputComponent) in BuildAnimationOutput() 1409 switch (path) { in BuildAnimationOutput() 1437 CORE_LOG_W("Animation.channel.path typ in BuildAnimationOutput() 1404 BuildAnimationOutput(GLTF2::Data const& data, IFileManager& fileManager, GLTFImportResult& result, GLTF2::Accessor& outputAccessor, GLTF2::AnimationPath path, AnimationOutputComponent& outputComponent) BuildAnimationOutput() argument [all...] |
| /test/xts/hats/telephony/ril/hdi_v1.1_additional/ |
| H A D | hdf_ril_hdiService_test_2nd.cpp | 2968 msg.path = "3F00";
in HWTEST_F() 2992 msg.path = "3F00";
in HWTEST_F() 3016 msg.path = "3F00";
in HWTEST_F() 3040 msg.path = "3F00";
in HWTEST_F() 3064 msg.path = "3F00";
in HWTEST_F() 3088 msg.path = "3F00";
in HWTEST_F() 3112 msg.path = "3F00";
in HWTEST_F() 3136 msg.path = "3F00";
in HWTEST_F() 3160 msg.path = "3F00";
in HWTEST_F() 3184 msg.path in HWTEST_F() [all...] |
| /third_party/node/doc/api/ |
| H A D | child_process.json | 11 "desc": "<p><strong>Source Code:</strong> <a href=\"https://github.com/nodejs/node/blob/v18.20.1/lib/child_process.js\">lib/child_process.js</a></p>\n<p>The <code>node:child_process</code> module provides the ability to spawn subprocesses in\na manner that is similar, but not identical, to <a href=\"http://man7.org/linux/man-pages/man3/popen.3.html\"><code>popen(3)</code></a>. This capability\nis primarily provided by the <a href=\"#child_processspawncommand-args-options\"><code>child_process.spawn()</code></a> function:</p>\n<pre><code class=\"language-js\">const { spawn } = require('node:child_process');\nconst ls = spawn('ls', ['-lh', '/usr']);\n\nls.stdout.on('data', (data) => {\n console.log(`stdout: ${data}`);\n});\n\nls.stderr.on('data', (data) => {\n console.error(`stderr: ${data}`);\n});\n\nls.on('close', (code) => {\n console.log(`child process exited with code ${code}`);\n});\n</code></pre>\n<p>By default, pipes for <code>stdin</code>, <code>stdout</code>, and <code>stderr</code> are established between\nthe parent Node.js process and the spawned subprocess. These pipes have\nlimited (and platform-specific) capacity. If the subprocess writes to\nstdout in excess of that limit without the output being captured, the\nsubprocess blocks waiting for the pipe buffer to accept more data. This is\nidentical to the behavior of pipes in the shell. Use the <code>{ stdio: 'ignore' }</code>\noption if the output will not be consumed.</p>\n<p>The command lookup is performed using the <code>options.env.PATH</code> environment\nvariable if <code>env</code> is in the <code>options</code> object. Otherwise, <code>process.env.PATH</code> is\nused. If <code>options.env</code> is set without <code>PATH</code>, lookup on Unix is performed\non a default search path search of <code>/usr/bin:/bin</code> (see your operating system's\nmanual for execvpe/execvp), on Windows the current processes environment\nvariable <code>PATH</code> is used.</p>\n<p>On Windows, environment variables are case-insensitive. Node.js\nlexicographically sorts the <code>env</code> keys and uses the first one that\ncase-insensitively matches. Only first (in lexicographic order) entry will be\npassed to the subprocess. This might lead to issues on Windows when passing\nobjects to the <code>env</code> option that have multiple variants of the same key, such as\n<code>PATH</code> and <code>Path</code>.</p>\n<p>The <a href=\"#child_processspawncommand-args-options\"><code>child_process.spawn()</code></a> method spawns the child process asynchronously,\nwithout blocking the Node.js event loop. The <a href=\"#child_processspawnsynccommand-args-options\"><code>child_process.spawnSync()</code></a>\nfunction provides equivalent functionality in a synchronous manner that blocks\nthe event loop until the spawned process either exits or is terminated.</p>\n<p>For convenience, the <code>node:child_process</code> module provides a handful of\nsynchronous and asynchronous alternatives to <a href=\"#child_processspawncommand-args-options\"><code>child_process.spawn()</code></a> and\n<a href=\"#child_processspawnsynccommand-args-options\"><code>child_process.spawnSync()</code></a>. Each of these alternatives are implemented on\ntop of <a href=\"#child_processspawncommand-args-options\"><code>child_process.spawn()</code></a> or <a href=\"#child_processspawnsynccommand-args-options\"><code>child_process.spawnSync()</code></a>.</p>\n<ul>\n<li><a href=\"#child_processexeccommand-options-callback\"><code>child_process.exec()</code></a>: spawns a shell and runs a command within that\nshell, passing the <code>stdout</code> and <code>stderr</code> to a callback function when\ncomplete.</li>\n<li><a href=\"#child_processexecfilefile-args-options-callback\"><code>child_process.execFile()</code></a>: similar to <a href=\"#child_processexeccommand-options-callback\"><code>child_process.exec()</code></a> except\nthat it spawns the command directly without first spawning a shell by\ndefault.</li>\n<li><a href=\"#child_processforkmodulepath-args-options\"><code>child_process.fork()</code></a>: spawns a new Node.js process and invokes a\nspecified module with an IPC communication channel established that allows\nsending messages between parent and child.</li>\n<li><a href=\"#child_processexecsynccommand-options\"><code>child_process.execSync()</code></a>: a synchronous version of\n<a href=\"#child_processexeccommand-options-callback\"><code>child_process.exec()</code></a> that will block the Node.js event loop.</li>\n<li><a href=\"#child_processexecfilesyncfile-args-options\"><code>child_process.execFileSync()</code></a>: a synchronous version of\n<a href=\"#child_processexecfilefile-args-options-callback\"><code>child_process.execFile()</code></a> that will block the Node.js event loop.</li>\n</ul>\n<p>For certain use cases, such as automating shell scripts, the\n<a href=\"#synchronous-process-creation\">synchronous counterparts</a> may be more convenient. In many cases, however,\nthe synchronous methods can have significant impact on performance due to\nstalling the event loop while spawned processes complete.</p>", 174 "desc": "<p>Spawns a shell then executes the <code>command</code> within that shell, buffering any\ngenerated output. The <code>command</code> string passed to the exec function is processed\ndirectly by the shell and special characters (vary based on\n<a href=\"https://en.wikipedia.org/wiki/List_of_command-line_interpreters\">shell</a>)\nneed to be dealt with accordingly:</p>\n<pre><code class=\"language-js\">const { exec } = require('node:child_process');\n\nexec('\"/path/to/test file/test.sh\" arg1 arg2');\n// Double quotes are used so that the space in the path is not interpreted as\n// a delimiter of multiple arguments.\n\nexec('echo \"The \\\\$HOME variable is $HOME\"');\n// The $HOME variable is escaped in the first instance, but not in the second.\n</code></pre>\n<p><strong>Never pass unsanitized user input to this function. Any input containing shell\nmetacharacters may be used to trigger arbitrary command execution.</strong></p>\n<p>If a <code>callback</code> function is provided, it is called with the arguments\n<code>(error, stdout, stderr)</code>. On success, <code>error</code> will be <code>null</code>. On error,\n<code>error</code> will be an instance of <a href=\"errors.html#class-error\"><code>Error</code></a>. The <code>error.code</code> property will be\nthe exit code of the process. By convention, any exit code other than <code>0</code>\nindicates an error. <code>error.signal</code> will be the signal that terminated the\nprocess.</p>\n<p>The <code>stdout</code> and <code>stderr</code> arguments passed to the callback will contain the\nstdout and stderr output of the child process. By default, Node.js will decode\nthe output as UTF-8 and pass strings to the callback. The <code>encoding</code> option\ncan be used to specify the character encoding used to decode the stdout and\nstderr output. If <code>encoding</code> is <code>'buffer'</code>, or an unrecognized character\nencoding, <code>Buffer</code> objects will be passed to the callback instead.</p>\n<pre><code class=\"language-js\">const { exec } = require('node:child_process');\nexec('cat *.js missing_file | wc -l', (error, stdout, stderr) => {\n if (error) {\n console.error(`exec error: ${error}`);\n return;\n }\n console.log(`stdout: ${stdout}`);\n console.error(`stderr: ${stderr}`);\n});\n</code></pre>\n<p>If <code>timeout</code> is greater than <code>0</code>, the parent will send the signal\nidentified by the <code>killSignal</code> property (the default is <code>'SIGTERM'</code>) if the\nchild runs longer than <code>timeout</code> milliseconds.</p>\n<p>Unlike the <a href=\"http://man7.org/linux/man-pages/man3/exec.3.html\"><code>exec(3)</code></a> POSIX system call, <code>child_process.exec()</code> does not replace\nthe existing process and uses a shell to execute the command.</p>\n<p>If this method is invoked as its <a href=\"util.html#utilpromisifyoriginal\"><code>util.promisify()</code></a>ed version, it returns\na <code>Promise</code> for an <code>Object</code> with <code>stdout</code> and <code>stderr</code> properties. The returned\n<code>ChildProcess</code> instance is attached to the <code>Promise</code> as a <code>child</code> property. In\ncase of an error (including any error resulting in an exit code other than 0), a\nrejected promise is returned, with the same <code>error</code> object given in the\ncallback, but with two additional properties <code>stdout</code> and <code>stderr</code>.</p>\n<pre><code class=\"language-js\">const util = require('node:util');\nconst exec = util.promisify(require('node:child_process').exec);\n\nasync function lsExample() {\n const { stdout, stderr } = await exec('ls');\n console.log('stdout:', stdout);\n console.error('stderr:', stderr);\n}\nlsExample();\n</code></pre>\n<p>If the <code>signal</code> option is enabled, calling <code>.abort()</code> on the corresponding\n<code>AbortController</code> is similar to calling <code>.kill()</code> on the child process except\nthe error passed to the callback will be an <code>AbortError</code>:</p>\n<pre><code class=\"language-js\">const { exec } = require('node:child_process');\nconst controller = new AbortController();\nconst { signal } = controller;\nconst child = exec('grep ssh', { signal }, (error) => {\n console.error(error); // an AbortError\n});\ncontroller.abort();\n</code></pre>" 217 "textRaw": "`file` {string} The name or path o [all...] |
| H A D | async_hooks.html | 62 <li><a href="path.html" class="nav-path">Path</a></li> 102 <path fill="none" d="M0 0h24v24H0z" /> 103 <path d="M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15A4.01 4.01 0 0111 18c0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z"/> 104 <path d="M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z"/> 107 <path d="M0 0h24v24H0z" fill="none" /> 108 <path d="M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z"/> 222 <li><a href="path.html" class="nav-path">Pat [all...] |
| /third_party/node/deps/v8/third_party/ittapi/include/ |
| H A D | ittnotify.h | 3552 * @param[in] filePath - the file path; the output format is defined by the file extension 3639 * @param[in] path - file system full path to the module 3642 void ITTAPI __itt_module_loadA(void *start_addr, void *end_addr, const char *path); 3643 void ITTAPI __itt_module_loadW(void *start_addr, void *end_addr, const wchar_t *path); 3652 void ITTAPI __itt_module_load(void *start_addr, void *end_addr, const char *path); 3659 ITT_STUB(ITTAPI, void, module_loadA, (void *start_addr, void *end_addr, const char *path)) 3660 ITT_STUB(ITTAPI, void, module_loadW, (void *start_addr, void *end_addr, const wchar_t *path)) 3662 ITT_STUB(ITTAPI, void, module_load, (void *start_addr, void *end_addr, const char *path)) 3675 #define __itt_module_loadA(start_addr, end_addr, path) [all...] |
| /third_party/libabigail/src/ |
| H A D | abg-writer.cc | 341 /// Getter of the write-corpus-path option. 343 /// @return true iff corpus-path information shall be emitted 348 /// Setter of the write-corpus-path option 355 /// Getter of the comp-dir-path option. 362 /// Setter of the comp-dir-path option 2117 /// Set the 'write-corpus-path' flag. 2119 /// When this flag is set then the XML writer will emit corpus-path 2124 /// @param flag the new value of the 'write-corpus-path' flag. 2420 o << " path='" << xml::escape_xml_string(tu_path) << "'"; in write_translation_unit() 2423 o << " comp-dir-path in write_translation_unit() 4780 string path; dump_location() local [all...] |
| /third_party/pulseaudio/po/ |
| H A D | sr@latin.po | 65 " --log-target={auto,syslog,stderr,file:PATH,newfile:PATH}\n" 71 " -p, --dl-search-path=PATH Set the search path for dynamic " 145 " -p, --dl-search-path=PUTANJA Postavi putanju pretrage za " 213 "valid file name 'file:<path>', 'newfile:<path>'." 221 "name 'file:<path>', 'newfile:<path>' [all...] |
| H A D | sr.po | 65 " --log-target={auto,syslog,stderr,file:PATH,newfile:PATH}\n" 71 " -p, --dl-search-path=PATH Set the search path for dynamic " 145 " -p, --dl-search-path=ПУТАЊА Постави путању претраге за динамички " 213 "valid file name 'file:<path>', 'newfile:<path>'." 221 "name 'file:<path>', 'newfile:<path>' [all...] |
| /foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
| H A D | stateMgmt.js | 1431 // PU code path 1435 // FU code path 1887 // FU code path method 1892 // PU code path method 2310 // PU code path 2315 // FU code path 2329 // PU code path with observed object property change tracking optimization 2336 // no need to support FU code path when app uses @Track 2839 // FU code path callback 2846 // FU code path [all...] |
| /third_party/node/deps/undici/ |
| H A D | undici.js | 538 if (url.path != null && typeof url.path !== "string") { 539 throw new InvalidArgumentError("Invalid URL path: the path must be a string or null/undefined."); 552 let path = url.path != null ? url.path : `${url.pathname || ""}${url.search || ""}`; 556 if (path && !path.startsWith("/")) { 557 path [all...] |
| /base/security/certificate_framework/frameworks/adapter/v1.0/src/ |
| H A D | x509_cert_chain_openssl.c | 73 char **path; member 940 static OCSP_RESPONSE *SendReqBioCustom(BIO *bio, const char *host, const char *path, OCSP_REQUEST *req) in SendReqBioCustom() argument 945 ctx = OCSP_sendreq_new(bio, path, NULL, -1); in SendReqBioCustom() 1021 if (!OCSP_parse_url(urlValiable, params->host, params->port, params->path, params->ssl)) { in GetOcspUrl() 1115 char *path = NULL; in STACK_OF() local 1121 .revo = revo, .host = &host, .port = &port, .path = &path, .ssl = &ssl }); in STACK_OF() 1152 OCSP_RESPONSE *resp = SendReqBioCustom(cbio, host, path, req); in STACK_OF()
|