HomeSort by relevance Sort by last modified time
    Searched refs:access_type (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/sandbox/win/tools/finder/
main.cc 34 DWORD access_type = 0; local
87 access_type |= kTestForRead;
89 access_type |= kTestForWrite;
91 access_type |= kTestForAll;
115 if (0 == access_type) {
141 finder_obj.Init(token_type, object_type, access_type, file_output);
finder.cc 26 DWORD access_type,
35 access_type_ = access_type;
finder.h 58 DWORD access_type, FILE *file_output);
  /development/host/windows/usb/api/
adb_legacy_interface.h 105 @param[in] access_type Desired access type. In the current implementation
116 AdbOpenAccessType access_type,
129 @param[in] access_type Desired access type. In the current implementation
142 AdbOpenAccessType access_type,
adb_helper_routines.h 29 @param[in] access_type Enumerated access type
38 bool GetSDKComplientParam(AdbOpenAccessType access_type,
adb_legacy_endpoint_object.h 105 @param access_type[in] Desired access type. In the current implementation
117 AdbOpenAccessType access_type,
adb_interface.h 95 @param[in] access_type Desired access type. In the current implementation
106 AdbOpenAccessType access_type,
adb_api.h 423 @param[in] access_type Desired access type. In the current implementation
434 AdbOpenAccessType access_type,
442 @param[in] access_type Desired access type. In the current implementation
453 AdbOpenAccessType access_type,
461 @param[in] access_type Desired access type. In the current implementation
472 AdbOpenAccessType access_type,
adb_api.cpp 322 AdbOpenAccessType access_type,
331 adb_object->OpenEndpoint(endpoint_index, access_type, sharing_mode);
341 AdbOpenAccessType access_type,
345 access_type,
350 AdbOpenAccessType access_type,
354 access_type,
adb_legacy_interface.cpp 214 AdbOpenAccessType access_type,
242 access_type, sharing_mode);
249 AdbOpenAccessType access_type,
273 access_type,
adb_helper_routines.cpp 28 bool GetSDKComplientParam(AdbOpenAccessType access_type,
33 switch (access_type) {
adb_legacy_endpoint_object.cpp 193 AdbOpenAccessType access_type,
199 if (!GetSDKComplientParam(access_type, share_mode,
  /external/chromium_org/chrome/browser/webdata/
web_data_service_factory.h 59 Profile::ServiceAccessType access_type);
63 Profile::ServiceAccessType access_type);
68 Profile::ServiceAccessType access_type);
web_data_service_factory.cc 189 Profile::ServiceAccessType access_type) {
190 // If |access_type| starts being used for anything other than this
193 DCHECK(access_type != Profile::IMPLICIT_ACCESS || !profile->IsOffTheRecord());
201 Profile::ServiceAccessType access_type) {
202 // If |access_type| starts being used for anything other than this
205 DCHECK(access_type != Profile::IMPLICIT_ACCESS || !profile->IsOffTheRecord());
214 Profile::ServiceAccessType access_type) {
216 WebDataServiceFactory::GetForProfile(profile, access_type);
  /development/host/windows/usb/winusb/
adb_winusb_interface.h 135 @param[in] access_type Desired access type. In the current implementation
146 AdbOpenAccessType access_type,
  /external/valgrind/main/drd/
drd_load_store.h 49 const BmAccessTypeT access_type,
pub_drd_bitmap.h 86 const BmAccessTypeT access_type);
101 const BmAccessTypeT access_type);
110 const Addr address, const BmAccessTypeT access_type);
121 const BmAccessTypeT access_type);
drd_load_store.c 90 const BmAccessTypeT access_type,
99 if (access_type == eStore && size <= sizeof(HWord)) {
104 } else if (access_type == eStore && size > sizeof(HWord)) {
114 access_type == eLoad ? "load "
115 : access_type == eStore ? "store"
116 : access_type == eStart ? "start"
117 : access_type == eEnd ? "end " : "????",
140 const BmAccessTypeT access_type)
162 .access_type = access_type,
    [all...]
drd_error.h 105 BmAccessTypeT access_type; // Access type: load or store. member in struct:__anon28042
drd_bitmap.c 121 * Record an access of type access_type at addresses a .. a + size - 1 in
131 const BmAccessTypeT access_type)
133 tl_assert(access_type == eLoad || access_type == eStore);
135 if (access_type == eLoad)
335 const BmAccessTypeT access_type)
337 tl_assert(access_type == eLoad || access_type == eStore);
339 if (access_type == eLoad)
534 * Report whether an access of type access_type at address a is recorded i
    [all...]
drd_error.c 204 what_prefix, dri->access_type == eStore ? "store" : "load",
243 dri->access_type);
269 return dri1->access_type == dri2->access_type
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
v8_utilities.py 111 def activity_logging_world_list(member, access_type=None):
114 access_type can be 'Getter' or 'Setter' if only checking getting or setting.
121 # agrees with specified access_type (Getter/Setter).
123 (access_type and activity_logging.startswith(access_type)))
  /external/qemu/target-mips/
helper.c 39 target_ulong address, int rw, int access_type)
48 target_ulong address, int rw, int access_type)
66 target_ulong address, int rw, int access_type)
110 int rw, int access_type)
133 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
139 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
147 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
164 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
188 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
196 ret = env->tlb->map_address(env, physical, prot, address, rw, access_type);
446 int access_type; local
490 int access_type; local
    [all...]
cpu.h 42 int (*map_address) (struct CPUMIPSState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type);
469 target_ulong address, int rw, int access_type);
471 target_ulong address, int rw, int access_type);
473 target_ulong address, int rw, int access_type);
  /external/qemu/target-arm/
helper.c 967 static inline int check_ap(CPUState *env, int ap, int domain, int access_type,
975 if (access_type == 1)
982 if (access_type == 1)
1029 static int get_phys_addr_v5(CPUState *env, uint32_t address, int access_type,
1589 int access_type = op2 & 1; local
    [all...]

Completed in 793 milliseconds

1 2