Home
last modified time | relevance | path

Searched refs:access (Results 526 - 550 of 1187) sorted by relevance

1...<<21222324252627282930>>...48

/third_party/toybox/toys/lsb/
H A Dumount.c121 if (!(toys.optflags & FLAG_n) && !access(pm, R_OK)) in umount_main()
/third_party/toybox/toys/other/
H A Dlogin.c110 if (pwd->pw_uid && !access("/etc/nologin", R_OK)) { in login_main()
H A Dsysctl.c109 if (!access(path, R_OK)) dirtree_read(path, do_show_keys); in process_key()
/third_party/selinux/libselinux/src/
H A Dinit.c152 has_selinux_config = (access(SELINUXCONFIG, F_OK) == 0); in init_lib()
/third_party/vk-gl-cts/scripts/build/
H A Dcommon.py123 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
/third_party/vk-gl-cts/scripts/ctsbuild/
H A Dcommon.py123 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
/third_party/mesa3d/src/gallium/frontends/clover/spirv/
H A Dinvocation.cpp98 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 Dimpls.rs889 $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 Des31fStencilTexturingTests.cpp388 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 Des31fUniformLocationTests.cpp111 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 Dsimplified-lowering.cc15 #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 Dpipe.c210 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 Dfs.c379 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 Des3fTextureShadowTests.cpp67 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 Dfs.c445 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 Djunit-4.10.jarMETA-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 Dpollndk.cpp64 int res = access("ppoll_function_file", F_OK); in Ppoll()
/third_party/cups-filters/cupsfilters/
H A Dcolormanager.c338 if (access(full_path, 0)) { in _get_ppd_icc_fallback()
/third_party/alsa-utils/alsaloop/
H A Dalsaloop.h91 snd_pcm_access_t access; member
/third_party/alsa-lib/include/
H A Dtopology.h98 * 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 Dunw_apply_reg_state.tex47 returned by the \Func{access\_mem}() call-back (see
/third_party/mesa3d/src/freedreno/rnn/
H A Drnn.h207 } access; member
/third_party/ltp/libs/libltpnuma/
H A Dtst_numa.c140 if (access(path, F_OK)) { in node_has_enough_memory()
/third_party/ltp/testcases/kernel/firmware/fw_load_user/
H A Dfw_load.c191 if (access(fi->dir, X_OK) == -1) { in create_firmware()
/third_party/ltp/testcases/kernel/device-drivers/rtc/
H A Drtc01.c229 if (access(rtc_dev, F_OK) == -1) in main()

Completed in 30 milliseconds

1...<<21222324252627282930>>...48