/external/autotest/client/deps/fakegudev/src/ |
D | fakesyscalls.c | 193 const char *redirection; in open() local 201 redirection = (char *) g_hash_table_lookup (file_redirection_map, pathname); in open() 202 if (redirection == NULL) in open() 203 redirection = pathname; in open() 216 pathname, flags, mode, redirection, flags, mode); in open() 217 return realfunc (redirection, flags, mode); in open() 221 pathname, flags, redirection, flags); in open() 222 return realfunc (redirection, flags); in open() 230 const char *redirection; in creat() local 235 redirection = (char *) g_hash_table_lookup (file_redirection_map, pathname); in creat() [all …]
|
/external/v8/src/execution/ |
D | simulator-base.h | 29 static Redirection* redirection() { return redirection_; } in redirection() function 155 Redirection* redirection = FromInstruction( in ReverseRedirection() local 157 return redirection->external_function(); in ReverseRedirection() 160 static void DeleteChain(Redirection* redirection) { in DeleteChain() argument 161 while (redirection != nullptr) { in DeleteChain() 162 Redirection* next = redirection->next_; in DeleteChain() 163 delete redirection; in DeleteChain() local 164 redirection = next; in DeleteChain()
|
D | simulator-base.cc | 64 Redirection* redirection = Redirection::Get(external_function, type); in RedirectExternalReference() local 65 return redirection->address_of_instruction(); in RedirectExternalReference() 71 next_ = Simulator::redirection(); in Redirection() 89 Redirection* current = Simulator::redirection(); in Get()
|
/external/curl/docs/cmdline-opts/ |
D | post302.d | 8 requests when following a 302 redirection. The non-RFC behaviour is ubiquitous 11 a redirection. This option is meaningful only when using --location.
|
D | post301.d | 8 requests when following a 301 redirection. The non-RFC behaviour is ubiquitous 11 a redirection. This option is meaningful only when using --location.
|
D | post303.d | 9 remain a POST after a 303 redirection. This option is meaningful only when
|
D | max-redirs.d | 6 Set maximum number of redirection-followings allowed. When --location is used,
|
/external/lz4/ |
D | INSTALL | 10 including [staged installs], [redirection], or [command redefinition]. 15 [redirection]: https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
|
D | README.md | 88 including [staged installs], [redirection], or [command redefinition]. 93 [redirection]: https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
|
/external/u-boot/drivers/w1-eeprom/ |
D | Kconfig | 31 The device may be seen as a 32 byte memory, using the page redirection 32 or as a 128 byte memory, ignoring the page redirection.
|
/external/tensorflow/tensorflow/core/platform/ |
D | build_config_root.bzl | 1 """Provides a redirection point for platform specific implementations of starlark utilities."""
|
D | build_config.bzl | 1 """Provides a redirection point for platform specific implementations of starlark utilities."""
|
/external/python/google-api-python-client/docs/ |
D | django.md | 7 …y best to store per-user `Flow` objects before the first redirection. This way, your redirection h…
|
D | google_app_engine.md | 21 …u need to add a specific URL handler to your application to handle the redirection from the author… 105 …y best to store per-user `Flow` objects before the first redirection. This way, your redirection h…
|
D | client-secrets.md | 42 - `redirect_uris` (list of strings): A list of valid redirection endpoint URIs. This list should ma…
|
/external/python/pybind11/docs/advanced/pycpp/ |
D | utilities.rst | 31 redirection. Replacing a library's printing with `py::print <print>` may not 65 The redirection can also be done in Python with the addition of a context
|
/external/v8/src/execution/ppc/ |
D | simulator-ppc.cc | 968 Redirection* redirection = Redirection::FromInstruction(instr); in SoftwareInterrupt() local 974 (redirection->type() == ExternalReference::BUILTIN_CALL_PAIR && in SoftwareInterrupt() 993 (redirection->type() == ExternalReference::BUILTIN_FP_FP_CALL) || in SoftwareInterrupt() 994 (redirection->type() == ExternalReference::BUILTIN_COMPARE_CALL) || in SoftwareInterrupt() 995 (redirection->type() == ExternalReference::BUILTIN_FP_CALL) || in SoftwareInterrupt() 996 (redirection->type() == ExternalReference::BUILTIN_FP_INT_CALL); in SoftwareInterrupt() 1001 reinterpret_cast<intptr_t>(redirection->external_function()); in SoftwareInterrupt() 1011 switch (redirection->type()) { in SoftwareInterrupt() 1039 switch (redirection->type()) { in SoftwareInterrupt() 1073 switch (redirection->type()) { in SoftwareInterrupt() [all …]
|
/external/curl/tests/data/ |
D | test1418 | 52 # This is the first reply after the redirection
|
D | test89 | 38 # This is the first reply after the redirection
|
D | test90 | 48 # This is the first reply after the redirection
|
/external/ltp/testcases/kernel/fs/fs_bind/ |
D | CHANGELOG | 51 Added logdir/errors redirection of stderr
|
/external/v8/src/execution/arm/ |
D | simulator-arm.cc | 1626 Redirection* redirection = Redirection::FromInstruction(instr); in SoftwareInterrupt() local 1641 (redirection->type() == ExternalReference::BUILTIN_FP_FP_CALL) || in SoftwareInterrupt() 1642 (redirection->type() == ExternalReference::BUILTIN_COMPARE_CALL) || in SoftwareInterrupt() 1643 (redirection->type() == ExternalReference::BUILTIN_FP_CALL) || in SoftwareInterrupt() 1644 (redirection->type() == ExternalReference::BUILTIN_FP_INT_CALL); in SoftwareInterrupt() 1649 reinterpret_cast<intptr_t>(redirection->external_function()); in SoftwareInterrupt() 1659 switch (redirection->type()) { in SoftwareInterrupt() 1686 switch (redirection->type()) { in SoftwareInterrupt() 1733 switch (redirection->type()) { in SoftwareInterrupt() 1747 } else if (redirection->type() == ExternalReference::DIRECT_API_CALL) { in SoftwareInterrupt() [all …]
|
/external/v8/src/execution/mips/ |
D | simulator-mips.cc | 2193 Redirection* redirection = Redirection::FromInstruction(instr_.instr()); in SoftwareInterrupt() local 2210 (redirection->type() == ExternalReference::BUILTIN_FP_FP_CALL) || in SoftwareInterrupt() 2211 (redirection->type() == ExternalReference::BUILTIN_COMPARE_CALL) || in SoftwareInterrupt() 2212 (redirection->type() == ExternalReference::BUILTIN_FP_CALL) || in SoftwareInterrupt() 2213 (redirection->type() == ExternalReference::BUILTIN_FP_INT_CALL); in SoftwareInterrupt() 2220 switch (redirection->type()) { in SoftwareInterrupt() 2264 reinterpret_cast<intptr_t>(redirection->external_function()); in SoftwareInterrupt() 2279 switch (redirection->type()) { in SoftwareInterrupt() 2301 switch (redirection->type()) { in SoftwareInterrupt() 2336 switch (redirection->type()) { in SoftwareInterrupt() [all …]
|
/external/mesa3d/docs/relnotes/ |
D | 18.3.3.rst | 52 - bin/get-pick-list.sh: fix redirection in sh
|
/external/v8/src/execution/mips64/ |
D | simulator-mips64.cc | 2198 Redirection* redirection = Redirection::FromInstruction(instr_.instr()); in SoftwareInterrupt() local 2215 (redirection->type() == ExternalReference::BUILTIN_FP_FP_CALL) || in SoftwareInterrupt() 2216 (redirection->type() == ExternalReference::BUILTIN_COMPARE_CALL) || in SoftwareInterrupt() 2217 (redirection->type() == ExternalReference::BUILTIN_FP_CALL) || in SoftwareInterrupt() 2218 (redirection->type() == ExternalReference::BUILTIN_FP_INT_CALL); in SoftwareInterrupt() 2225 switch (redirection->type()) { in SoftwareInterrupt() 2252 reinterpret_cast<intptr_t>(redirection->external_function()); in SoftwareInterrupt() 2267 switch (redirection->type()) { in SoftwareInterrupt() 2289 switch (redirection->type()) { in SoftwareInterrupt() 2324 switch (redirection->type()) { in SoftwareInterrupt() [all …]
|