HomeSort by relevance Sort by last modified time
    Searched refs:access (Results 51 - 75 of 1146) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/base/win/
registry.h 30 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
33 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
36 DWORD* disposition, REGSAM access);
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
45 LONG OpenKey(const wchar_t* relative_key_name, REGSAM access);
57 // occurrs while attempting to access it.
118 // The key must have been opened with the KEY_NOTIFY access privilege.
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.stdoutB.exp 6 Hardware access (read/write) watchpoint 3: undefined[4]
14 Hardware access (read/write) watchpoint 3: undefined[4]
19 Hardware access (read/write) watchpoint 3: undefined[4]
  /external/chromium_org/rlz/win/lib/
rlz_value_store_registry.cc 58 bool GetRegKey(const char* name, REGSAM access, base::win::RegKey* key) {
64 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK)) {
66 access);
69 access);
75 bool GetPingTimesRegKey(REGSAM access, base::win::RegKey* key) {
76 return GetRegKey(kPingTimesSubkeyName, access, key);
82 REGSAM access, base::win::RegKey* key) {
97 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK)) {
99 access);
102 access);
    [all...]
  /system/core/healthd/
BatteryMonitor.cpp 301 if (access(path.string(), R_OK) == 0)
310 if (access(path, R_OK) == 0)
318 if (access(path, R_OK) == 0)
326 if (access(path, R_OK) == 0)
334 if (access(path, R_OK) == 0)
342 if (access(path, R_OK) == 0) {
348 if (access(path, R_OK) == 0)
357 if (access(path, R_OK) == 0)
365 if (access(path, R_OK) == 0)
373 if (access(path, R_OK) == 0)
    [all...]
  /external/chromium_org/chrome/browser/mac/
security_wrappers.h 37 CrSKeychainItemAndAccess(SecKeychainItemRef item, SecAccessRef access);
45 SecAccessRef access() const { return access_; } function in class:chrome::CrSKeychainItemAndAccess
160 // Tests access to |item| by calling SecKeychainItemCopyAttributesAndData,
161 // taking care to properly free any returned data. Returns true if access to
174 CFArrayRef CrSAccessCopyACLList(SecAccessRef access);
228 SecAccessRef access);
security_wrappers.cc 41 SecAccessRef access)
43 access_(access) {
173 SecAccessRef access; local
174 OSStatus status = SecKeychainItemCopyAccess(item, &access);
182 return access;
185 CFArrayRef CrSAccessCopyACLList(SecAccessRef access) {
186 if (!access) {
191 OSStatus status = SecAccessCopyACLList(access, &acl_list);
392 SecAccessRef access) {
400 access,
    [all...]
  /external/chromium_org/content/common/
handle_enumerator_win.h 36 static string16 GetAccessString(HandleType handle_type, ACCESS_MASK access);
  /hardware/libhardware/
hardware.c 150 if (access(path, R_OK) == 0) break;
154 if (access(path, R_OK) == 0) break;
158 if (access(path, R_OK) == 0) break;
162 if (access(path, R_OK) == 0) break;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bufferobjects.c 251 GLintptr offset, GLsizeiptr length, GLbitfield access,
258 if (access & GL_MAP_WRITE_BIT)
261 if (access & GL_MAP_READ_BIT)
264 if (access & GL_MAP_FLUSH_EXPLICIT_BIT)
267 if (access & GL_MAP_INVALIDATE_BUFFER_BIT) {
270 else if (access & GL_MAP_INVALIDATE_RANGE_BIT) {
277 if (access & GL_MAP_UNSYNCHRONIZED_BIT)
283 if (access & MESA_MAP_NOWAIT_BIT)
299 obj->AccessFlags = access;
  /external/chromium_org/v8/src/
execution.cc 357 ExecutionAccess access(isolate_);
364 ExecutionAccess access(isolate_);
365 if (has_pending_interrupts(access)) {
366 set_interrupt_limits(access);
372 ExecutionAccess access(isolate_);
388 ExecutionAccess access(isolate_);
389 reset_limits(access);
394 ExecutionAccess access(isolate_);
395 return should_postpone_interrupts(access);
400 ExecutionAccess access(isolate_)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bufferobjects.c 251 GLintptr offset, GLsizeiptr length, GLbitfield access,
258 if (access & GL_MAP_WRITE_BIT)
261 if (access & GL_MAP_READ_BIT)
264 if (access & GL_MAP_FLUSH_EXPLICIT_BIT)
267 if (access & GL_MAP_INVALIDATE_BUFFER_BIT) {
270 else if (access & GL_MAP_INVALIDATE_RANGE_BIT) {
277 if (access & GL_MAP_UNSYNCHRONIZED_BIT)
283 if (access & MESA_MAP_NOWAIT_BIT)
299 obj->AccessFlags = access;
  /packages/apps/Nfc/src/com/android/nfc/
NfceeAccessControl.java 55 * Map from UID to NFCEE access, used as a cache.
84 boolean access = false;
91 // Ensure the package has access permissions
93 access = true;
99 mUidCache.put(uid, access);
100 return access;
111 Boolean access = mUidCache.get(info.uid); local
112 if (access == null) {
113 access = checkPackageNfceeAccess(info.packageName);
114 mUidCache.put(info.uid, access);
    [all...]
  /external/v8/src/
execution.cc 343 ExecutionAccess access(isolate_);
350 ExecutionAccess access(isolate_);
351 if (has_pending_interrupts(access)) {
352 set_interrupt_limits(access);
358 ExecutionAccess access(isolate_);
374 ExecutionAccess access(isolate_);
375 reset_limits(access);
380 ExecutionAccess access(isolate_);
381 return should_postpone_interrupts(access);
386 ExecutionAccess access(isolate_)
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
FieldSourcer.java 37 public FieldSourcer(Output output, int access, String name, String desc, String signature) {
40 mAccess = access;
  /device/generic/goldfish/opengl/system/gralloc/
Android.mk 13 # Need to access the special OPENGL TLS Slot
  /external/chromium/net/disk_cache/
cache_util_win.cc 64 // There is an error, but we share delete access so let's see if there is a
69 DWORD access = SYNCHRONIZE; local
71 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));
  /external/chromium_org/base/
platform_file_win.cc 54 DWORD access = 0; local
56 access = GENERIC_WRITE;
58 DCHECK(!access);
59 access = FILE_APPEND_DATA;
62 access |= GENERIC_READ;
64 access |= FILE_WRITE_ATTRIBUTES;
66 access |= GENERIC_EXECUTE;
86 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL,
tools_sanity_unittest.cc 168 int* volatile access = &array[5]; local
169 *access = 43;
182 int* volatile access = g_asan_test_global_array - 1; local
183 *access = 43;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_local.h 103 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
106 bo, offset, access | NOUVEAU_BO_LOW, 0, 0);
112 struct nouveau_bo *bo, uint32_t data, uint32_t access,
116 bo, data, access | NOUVEAU_BO_OR, vor, tor);
126 struct nouveau_bo *bo, uint32_t data, uint32_t access,
130 bo, data, access | NOUVEAU_BO_OR, vor, tor);
132 if (access & NOUVEAU_BO_LOW)
135 if (access & NOUVEAU_BO_OR) {
nouveau_bufferobj.c 127 GLsizeiptr length, GLbitfield access,
135 if (!(access & GL_MAP_UNSYNCHRONIZED_BIT)) {
136 if (access & GL_MAP_READ_BIT)
138 if (access & GL_MAP_WRITE_BIT)
149 obj->AccessFlags = access;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_local.h 103 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
106 bo, offset, access | NOUVEAU_BO_LOW, 0, 0);
112 struct nouveau_bo *bo, uint32_t data, uint32_t access,
116 bo, data, access | NOUVEAU_BO_OR, vor, tor);
126 struct nouveau_bo *bo, uint32_t data, uint32_t access,
130 bo, data, access | NOUVEAU_BO_OR, vor, tor);
132 if (access & NOUVEAU_BO_LOW)
135 if (access & NOUVEAU_BO_OR) {
nouveau_bufferobj.c 127 GLsizeiptr length, GLbitfield access,
135 if (!(access & GL_MAP_UNSYNCHRONIZED_BIT)) {
136 if (access & GL_MAP_READ_BIT)
138 if (access & GL_MAP_WRITE_BIT)
149 obj->AccessFlags = access;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameManager.java 115 public abstract Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize);
135 public Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize) {
173 public Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize) {
178 if ((backingAccess & access) == access
409 Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize) {
410 return mCache.fetchBacking(mode, access, dimensions, elemSize);
467 throw new IllegalStateException("Attempting to access FrameManager Frame data "
  /external/zlib/src/examples/
zran.c 1 /* zran.c -- example of zlib/gzip stream indexing and random access
12 for random access of a compressed file. A file containing a zlib or gzip
14 its entirety, and an index built with access points about every SPAN bytes
19 An access point can be created at the start of any deflate block, by saving
26 a new access point. If so, that point is saved in a data structure that
39 requests for random access reads from the compressed data would try to use
44 access, mainly copying the 32K byte dictionary. So if small pieces of the
49 not be constrained to have access points at block boundaries, but requires
50 more memory per access point, and also cannot be saved to file due to the
62 #define SPAN 1048576L /* desired distance between access points *
75 struct access { struct
    [all...]
  /frameworks/base/core/java/android/view/
ViewTreeObserver.java 811 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start(); local
813 int count = access.size();
815 access.get(i).onGlobalLayout();
843 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start(); local
845 int count = access.size();
847 cancelDraw |= !(access.get(i).onPreDraw());
894 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start(); local
926 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start(); local
    [all...]

Completed in 1349 milliseconds

1 23 4 5 6 7 8 91011>>