/third_party/toybox/toys/lsb/ |
H A D | umount.c | 121 if (!(toys.optflags & FLAG_n) && !access(pm, R_OK)) in umount_main()
|
/third_party/toybox/toys/other/ |
H A D | login.c | 110 if (pwd->pw_uid && !access("/etc/nologin", R_OK)) { in login_main()
|
H A D | sysctl.c | 109 if (!access(path, R_OK)) dirtree_read(path, do_show_keys); in process_key()
|
/third_party/selinux/libselinux/src/ |
H A D | init.c | 152 has_selinux_config = (access(SELINUXCONFIG, F_OK) == 0); in init_lib()
|
/third_party/vk-gl-cts/scripts/build/ |
H A D | common.py | 123 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
|
/third_party/vk-gl-cts/scripts/ctsbuild/ |
H A D | common.py | 123 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
|
/third_party/mesa3d/src/gallium/frontends/clover/spirv/ |
H A D | invocation.cpp | 98 convert_image_type(SpvId id, SpvDim dim, SpvAccessQualifier access, in convert_image_type() argument 105 switch (access) { in convert_image_type() 111 err += "Unknown access qualifier " + std::to_string(access) + " for image " in convert_image_type() 417 const auto access = get<SpvAccessQualifier>(inst, 9); in create_binary_from_spirv() local 418 types[id] = { convert_image_type(id, dim, access, err), in create_binary_from_spirv()
|
/third_party/rust/crates/serde/serde/src/de/ |
H A D | impls.rs | 889 $access:ident, 921 fn visit_seq<A>(self, mut $access: A) -> Result<Self::Value, A::Error> in deserialize() 927 while let Some(value) = tri!($access.next_element()) { in deserialize() 957 fn visit_seq<A>(mut self, mut $access: A) -> Result<Self::Value, A::Error> in deserialize_in_place() 962 $reserve(&mut self.0, size_hint::cautious::<T>($access.size_hint())); in deserialize_in_place() 965 while let Some(value) = tri!($access.next_element()) { in deserialize_in_place() 1391 $access:ident, 1422 fn visit_map<A>(self, mut $access: A) -> Result<Self::Value, A::Error> in deserialize() 1428 while let Some((key, value)) = tri!($access.next_entry()) { in deserialize()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fStencilTexturingTests.cpp | 388 static inline tcu::ConstPixelBufferAccess stencilToRedAccess (const tcu::ConstPixelBufferAccess& access) in stencilToRedAccess() argument 390 DE_ASSERT(access.getFormat() == TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8)); in stencilToRedAccess() 391 return tcu::ConstPixelBufferAccess(TextureFormat(TextureFormat::R, TextureFormat::UNSIGNED_INT8), access.getSize(), access.getPitch(), access.getDataPtr()); in stencilToRedAccess()
|
H A D | es31fUniformLocationTests.cpp | 111 static bool verifyResult (const tcu::ConstPixelBufferAccess& access); 436 bool UniformLocationCase::verifyResult (const tcu::ConstPixelBufferAccess& access) 443 for (int y = 0; y < access.getHeight(); y++) 445 for (int x = 0; x < access.getWidth(); x++) 447 const Vec4 diff = abs(access.getPixel(x, y) - reference);
|
/third_party/node/deps/v8/src/compiler/ |
H A D | simplified-lowering.cc | 15 #include "src/compiler/access-builder.h" 174 UseInfo UseInfoForBasePointer(const FieldAccess& access) { in UseInfoForBasePointer() argument 175 return access.tag() != 0 ? UseInfo::AnyTagged() : UseInfo::Word(); in UseInfoForBasePointer() 178 UseInfo UseInfoForBasePointer(const ElementAccess& access) { in UseInfoForBasePointer() argument 179 return access.tag() != 0 ? UseInfo::AnyTagged() : UseInfo::Word(); in UseInfoForBasePointer() 3399 FieldAccess access = FieldAccessOf(node->op()); in VisitNode() 3401 access.machine_type.representation(); in VisitNode() 3402 VisitUnop<T>(node, UseInfoForBasePointer(access), representation); in VisitNode() 3406 FieldAccess access = FieldAccessOf(node->op()); in VisitNode() local 3410 access in VisitNode() 3447 ElementAccess access = ElementAccessOf(node->op()); VisitNode() local [all...] |
/third_party/libuv/src/win/ |
H A D | pipe.c | 210 HANDLE* pipeHandle_ptr, DWORD access, in uv__pipe_server() 219 access | FILE_FLAG_FIRST_PIPE_INSTANCE, in uv__pipe_server() 408 /* The server needs inbound (read) access too, otherwise CreateNamedPipe() in uv__create_stdio_pipe_pair() 2377 FILE_ACCESS_INFORMATION access; in uv_pipe_open() local 2411 * just query the access flags and set the stream flags accordingly. in uv_pipe_open() 2415 &access, in uv_pipe_open() 2416 sizeof(access), in uv_pipe_open() 2422 if (!(access.AccessFlags & FILE_WRITE_DATA) || in uv_pipe_open() 2423 !(access.AccessFlags & FILE_READ_DATA)) { in uv_pipe_open() 2428 if (access in uv_pipe_open() 209 uv__pipe_server( HANDLE* pipeHandle_ptr, DWORD access, char* name, size_t nameSize, char* random) uv__pipe_server() argument [all...] |
H A D | fs.c | 379 DWORD access; in fs__open() local 396 /* CreateFileMapping always needs read access */ in fs__open() 416 access = FILE_GENERIC_READ; in fs__open() 419 access = FILE_GENERIC_WRITE; in fs__open() 422 access = FILE_GENERIC_READ | FILE_GENERIC_WRITE; in fs__open() 429 access &= ~FILE_WRITE_DATA; in fs__open() 430 access |= FILE_APPEND_DATA; in fs__open() 481 access |= DELETE; in fs__open() 522 if (access & FILE_APPEND_DATA) { in fs__open() 523 if (access in fs__open() [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fTextureShadowTests.cpp | 67 static void clampFloatingPointTexture (const tcu::PixelBufferAccess& access) in clampFloatingPointTexture() argument 69 DE_ASSERT(isFloatingPointDepthFormat(access.getFormat())); in clampFloatingPointTexture() 71 for (int z = 0; z < access.getDepth(); ++z) in clampFloatingPointTexture() 72 for (int y = 0; y < access.getHeight(); ++y) in clampFloatingPointTexture() 73 for (int x = 0; x < access.getWidth(); ++x) in clampFloatingPointTexture() 74 access.setPixDepth( de::clamp(access.getPixDepth(x, y, z), 0.0f, 1.0f), x, y, z); in clampFloatingPointTexture()
|
/third_party/node/deps/uv/src/win/ |
H A D | fs.c | 445 DWORD access; in fs__open() local 462 /* CreateFileMapping always needs read access */ in fs__open() 482 access = FILE_GENERIC_READ; in fs__open() 485 access = FILE_GENERIC_WRITE; in fs__open() 488 access = FILE_GENERIC_READ | FILE_GENERIC_WRITE; in fs__open() 495 access &= ~FILE_WRITE_DATA; in fs__open() 496 access |= FILE_APPEND_DATA; in fs__open() 547 access |= DELETE; in fs__open() 588 if (access & FILE_APPEND_DATA) { in fs__open() 589 if (access in fs__open() [all...] |
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | junit-4.10.jar | META-INF/
META-INF/MANIFEST.MF
junit/
junit/extensions/
junit/framework/
junit/runner/
junit/textui/
org/
... |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | pollndk.cpp | 64 int res = access("ppoll_function_file", F_OK);
in Ppoll()
|
/third_party/cups-filters/cupsfilters/ |
H A D | colormanager.c | 338 if (access(full_path, 0)) { in _get_ppd_icc_fallback()
|
/third_party/alsa-utils/alsaloop/ |
H A D | alsaloop.h | 91 snd_pcm_access_t access; member
|
/third_party/alsa-lib/include/ |
H A D | topology.h | 98 * Controls access can be specified using the "access" section. If no "access" 99 * section is defined then default RW access flags are set for normal and TLV 103 * access [ 110 * The standard access flags are as follows :- 884 int access; /*!< Control access */ member
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_apply_reg_state.tex | 47 returned by the \Func{access\_mem}() call-back (see
|
/third_party/mesa3d/src/freedreno/rnn/ |
H A D | rnn.h | 207 } access; member
|
/third_party/ltp/libs/libltpnuma/ |
H A D | tst_numa.c | 140 if (access(path, F_OK)) { in node_has_enough_memory()
|
/third_party/ltp/testcases/kernel/firmware/fw_load_user/ |
H A D | fw_load.c | 191 if (access(fi->dir, X_OK) == -1) { in create_firmware()
|
/third_party/ltp/testcases/kernel/device-drivers/rtc/ |
H A D | rtc01.c | 229 if (access(rtc_dev, F_OK) == -1) in main()
|