HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 26 - 50 of 260) sorted by null

12 3 4 5 6 7 8 91011

  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 112 unsigned access = MO.getTargetFlags() & PPCII::MO_ACCESS_MASK; local
114 switch (access) {
151 switch (access) {
  /external/chromium/base/
shared_memory_win.cc 161 DWORD access = STANDARD_RIGHTS_REQUIRED | FILE_MAP_READ; local
166 access |= FILE_MAP_WRITE;
180 &result, access, FALSE, options))
  /external/chromium/net/disk_cache/
file_win.cc 80 DWORD access = GENERIC_READ | GENERIC_WRITE | DELETE; local
81 platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
91 sync_platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
  /external/chromium_org/base/memory/
shared_memory_win.cc 193 DWORD access = STANDARD_RIGHTS_REQUIRED | FILE_MAP_READ; local
198 access |= FILE_MAP_WRITE;
212 &result, access, FALSE, options))
  /external/chromium_org/chrome/browser/renderer_host/
web_cache_manager.h 91 // The access time for this renderer.
92 base::Time access; member in struct:WebCacheManager::RendererInfo
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrBufferObj.h 32 void access() { function in class:GrBufferObj
33 // cannot access the buffer if it is currently mapped
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestRemoteCall.java 98 store.exposeObject("access", new ServerAccessImpl());
113 ServerAccess access = store.getExposedObject("access", ServerAccess.class, true); local
114 boolean result = access.attachChild("Models/Oto/Oto.mesh.xml");
  /external/proguard/src/proguard/ant/
MemberSpecificationElement.java 39 private String access; field in class:MemberSpecificationElement
67 String access = memberSpecificationElement.access; local
116 new MemberSpecification(requiredAccessFlags(true, access),
117 requiredAccessFlags(false, access),
129 public void setAccess(String access)
131 this.access = access;
171 String access)
176 if (access != null
    [all...]
ClassSpecificationElement.java 40 private String access; field in class:ClassSpecificationElement
76 String access = classSpecificationElement.access; local
93 requiredAccessFlags(true, access, type),
94 requiredAccessFlags(false, access, type),
116 public void setAccess(String access)
118 this.access = access;
202 String access,
208 if (access != null
    [all...]
  /external/skia/src/gpu/gl/debug/
GrBufferObj.h 32 void access() { function in class:GrBufferObj
33 // cannot access the buffer if it is currently mapped
  /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/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/gpu/config/
gpu_info_collector_x11.cc 118 pci_access* access = (libpci_loader.pci_alloc)(); local
119 DCHECK(access != NULL);
120 (libpci_loader.pci_init)(access);
121 (libpci_loader.pci_scan_bus)(access);
123 for (pci_dev* device = access->devices;
161 (libpci_loader.pci_cleanup)(access);
  /external/chromium_org/net/disk_cache/
file_win.cc 83 DWORD access = GENERIC_READ | GENERIC_WRITE | DELETE; local
84 platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
94 sync_platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
  /external/chromium_org/sandbox/win/src/
policy_low_level_unittest.cc 209 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 = 24
    [all...]
target_process.cc 262 DWORD access = FILE_MAP_READ | FILE_MAP_WRITE; local
266 &target_shared_section, access, FALSE, 0)) {
Wow64.cc 103 DWORD access = EVENT_MODIFY_STATE | SYNCHRONIZE; local
105 &remote_load, access, FALSE, 0))
108 &remote_continue, access, FALSE, 0))
  /external/pixman/test/
pixel-test.c 134 access (pixman_image_t *image, int x, int y) function
196 uint32_t computed = access (dest, i, j);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
connect.h 39 // access[i]: accessibility of state i.
44 SccVisitor(vector<StateId> *scc, vector<bool> *access,
46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
190 vector<StateId> *scc_stack_; // SCC stack (w/ random access)
205 vector<bool> access; local
208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
211 for (StateId s = 0; s < (StateId)access.size(); ++s)
212 if (!access[s] || !coaccess[s])
  /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...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 56 * If a subroutine is passed, the access flags will be modified if this instruction accesses
424 access(index, Type.INTEGER, subroutine); method
786 access(index, type, subroutine); method
875 access(index, type, subroutine); method
980 private void access(int index, Type type, Subroutine subroutine) { method in class:Executor
    [all...]
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.cc 80 const std::string& access) {
81 file_access_permission_flags_ |= GetAccessPermissionFlagFromString(access);
158 // Initialize access permissions (optional).
168 std::string access; local
169 if (!access_list_value->GetString(i, &access) ||
170 result->AddFileAccessPermission(access)) {
182 // Initialize file filters (mandatory, unless "create" access is specified,
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 69 DWORD access = 0; local
73 access = GENERIC_READ | GENERIC_WRITE;
75 access = GENERIC_WRITE;
77 access = GENERIC_READ;
87 HANDLE file = CreateFileW(path, access, FILE_SHARE_READ, NULL, disposition,

Completed in 3272 milliseconds

12 3 4 5 6 7 8 91011