Searched refs:access (Results 176 - 200 of 679) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/unicode/
H A Dudata.h290 * This allows to get access to the header containing
388 /** An alias for the default access mode. @stable ICU 3.4 */
395 /** ICU does not access the file system for data loading. @stable ICU 3.4 */
406 * @param access The type of file access to be used
412 udata_setFileAccess(UDataFileAccess access, UErrorCode *status);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpager.c59 if (!access("/usr/bin/pager", X_OK))
/external/ltrace/testsuite/ltrace.main/
H A Dsystem_calls.exp61 access ("system_calls.tmp", R_OK);
141 { {^f?access(at)?$} == 1 }
/external/ppp/pppd/plugins/
H A Dpassprompt.c35 if (promptprog[0] == 0 || access(promptprog, X_OK) < 0)
/external/qemu/distrib/ext4_utils/src/
H A Dsetup_fs.c33 if (access(buf, F_OK) == 0) {
/external/skia/src/gpu/gl/debug/
H A DGrBufferObj.h32 void access() { function in class:GrBufferObj
33 // cannot access the buffer if it is currently mapped
/external/chromium_org/v8/src/
H A Dv8threads.cc50 internal::ExecutionAccess access(isolate_);
51 isolate_->stack_guard()->ClearThread(access);
52 isolate_->stack_guard()->InitThread(access);
123 ExecutionAccess access(isolate_);
134 isolate_->stack_guard()->InitThread(access);
/external/lldb/include/lldb/Symbol/
H A DClangASTType.h457 lldb::AccessType access,
466 lldb::AccessType access);
471 lldb::AccessType access,
481 CreateBaseClassSpecifier (lldb::AccessType access,
509 lldb::AccessType access,
/external/chromium_org/sandbox/win/src/
H A Dpolicy_low_level_unittest.cc209 unsigned long access = 0; local
212 POLPARAM(access) // Argument 1
219 access = 24;
224 access = 42;
229 access = 24;
235 access = 42;
258 unsigned long access = 0; local
263 POLPARAM(access) // Argument 1
271 access = 24;
276 access
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fAdvancedBlendTests.cpp346 static tcu::ConstPixelBufferAccess getLinearAccess (const tcu::ConstPixelBufferAccess& access) argument
348 if (access.getFormat().order == TextureFormat::sRGBA)
350 access.getWidth(), access.getHeight(), access.getDepth(),
351 access.getRowPitch(), access.getSlicePitch(), access.getDataPtr());
353 return access;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DBuffer11.cpp39 D3D11_MAP GetD3DMapTypeFromBits(GLbitfield access) argument
41 bool readBit = ((access & GL_MAP_READ_BIT) != 0);
42 bool writeBit = ((access & GL_MAP_WRITE_BIT) != 0);
91 virtual void *map(size_t offset, size_t length, GLbitfield access) = 0;
117 virtual void *map(size_t offset, size_t length, GLbitfield access);
140 virtual void *map(size_t offset, size_t length, GLbitfield access);
341 gl::Error Buffer11::map(size_t offset, size_t length, GLbitfield access, GLvoid **mapPtr) argument
365 if ((access & GL_MAP_WRITE_BIT) > 0)
371 void *mappedBuffer = mMappedStorage->map(offset, length, access);
782 void *Buffer11::NativeBuffer11::map(size_t offset, size_t length, GLbitfield access) argument
862 map(size_t offset, size_t length, GLbitfield access) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dindex.php12 * 1. This user has FREE_TRIAL access to this application ( appId: 1 )
13 * 2. This user has FULL access to this application ( appId: 1 )
14 * 3. This user has NO access to this application ( appId: 1 )
60 * @param string $url Full URL of the resource to access
168 <div id="access-level">
170 This user has <span class="<%= accessLevel.toLowerCase() %>"><%= accessLevel %></span> access to this application ( appId: <%= appId %> )
172 This user has <span class="<%= result.toLowerCase() %>"><%= result %></span> access to this application ( appId: <%= appId %> )
190 <input type="submit" value="Check user's access" />
/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.cpp241 ExecValueAccess access = execCtx.getValue(input->getVariable()); local
250 interpolateVertexInput(access, vtxNdx-packetStart, input->getValueRange(), xf, yf);
265 ExecConstValueAccess access = execCtx.getValue(output); local
271 copyVarying(varyingAccess, access, vtxNdx-packetStart);
317 ExecValueAccess access = execCtx.getValue(input->getVariable()); local
329 interpolateFragmentInput(access, fragNdx-packetStart,
/external/qemu/android/utils/
H A Dpath.c217 int ret = HANDLE_EINTR(access(path, F_OK));
259 return HANDLE_EINTR(access(path, R_OK)) == 0;
268 return HANDLE_EINTR(access(path, W_OK)) == 0;
277 return HANDLE_EINTR(access(path, X_OK)) == 0;
519 if ( access(source, F_OK) < 0 ||
524 if ( access(source, R_OK) < 0 ) {
/external/qemu/hw/timer/
H A Di8254.c248 int channel, access; local
275 access = (val >> 4) & 3;
276 if (access == 0) {
279 s->rw_mode = access;
280 s->read_state = access;
281 s->write_state = access;
/external/valgrind/main/
H A Dglibc-2.X-drd.supp190 drd-libglib-access-g_threads_got_initialized
197 drd-libglib-access-g_threads_got_initialized
206 drd-libglib-access-g_mem_initialized
300 # the access pattern of current_thread_tls_key is safe.
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCodeEmitter.java69 int access; field in class:CodeEmitter.State
75 State(ClassInfo classInfo, int access, Signature sig, Type[] exceptionTypes) { argument
77 this.access = access;
80 localOffset = TypeUtils.isStatic(access) ? 0 : 1;
89 return access;
106 CodeEmitter(ClassEmitter ce, MethodVisitor mv, int access, Signature sig, Type[] exceptionTypes) { argument
107 super(access, sig.getDescriptor(), mv);
109 state = new State(ce.getClassInfo(), access, sig, exceptionTypes);
357 if (TypeUtils.isStatic(state.access)) {
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp79 static inline bool isEmpty (const tcu::ConstPixelBufferAccess& access) argument
81 return access.getWidth() == 0 || access.getHeight() == 0 || access.getDepth() == 0;
84 static inline bool isEmpty (const rr::MultisampleConstPixelBufferAccess& access) argument
86 return access.raw().getWidth() == 0 || access.raw().getHeight() == 0 || access.raw().getDepth() == 0;
233 static inline tcu::IVec4 getBufferRect (const rr::MultisampleConstPixelBufferAccess& access) argument
235 return tcu::IVec4(0, 0, access
[all...]
/external/chromium_org/content/shell/renderer/test_runner/resources/fonts/
H A Dfonts.conf3 <!-- /etc/fonts/fonts.conf file to configure system font access -->
/external/chromium_org/media/audio/alsa/
H A Dalsa_wrapper.cc75 snd_pcm_access_t access, unsigned int channels,
80 access,
74 PcmSetParams(snd_pcm_t* handle, snd_pcm_format_t format, snd_pcm_access_t access, unsigned int channels, unsigned int rate, int soft_resample, unsigned int latency) argument
/external/chromium_org/storage/browser/database/
H A Dvfs_backend.cc38 // If we're accessing an existing file, we cannot give exclusive access, and
142 if (!access(file_path.value().c_str(), R_OK))
144 if (!access(file_path.value().c_str(), W_OK))
/external/chromium_org/third_party/libxml/src/
H A Dcheck-xinclude-test-suite.py80 if os.access(URI, os.R_OK) == 0:
96 if os.access(output, os.R_OK) == 0:
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dbufferobj.h125 _mesa_MapBufferARB(GLenum target, GLenum access);
146 GLbitfield access);
/external/compiler-rt/test/tsan/
H A Dunaligned_race.cc24 static NOINLINE void access(volatile char *p, int sz, int rw) { function
55 access(p, sz1, true);
/external/elfutils/0.153/libcpu/
H A DMakefile.am49 noinst_HEADERS = memory-access.h i386_parse.h i386_data.h

Completed in 1478 milliseconds

1234567891011>>