Searched defs:access_type (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/main/drd/tests/
H A Dunit_bitmap.c74 struct { Addr address; SizeT size; BmAccessTypeT access_type; } member in struct:__anon15056
142 s_test1_args[i].access_type);
153 s_test1_args[i].access_type));
/external/qemu/target-mips/
H A Dhelper.c39 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);
38 no_mmu_map_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
47 fixed_mmu_map_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
65 r4k_map_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
108 get_physical_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
446 int access_type; local
490 int access_type; local
[all...]
/external/valgrind/main/drd/
H A Ddrd_error.h105 BmAccessTypeT access_type; // Access type: load or store. member in struct:__anon15033
H A Ddrd_load_store.c90 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,
89 trace_mem_access(const Addr addr, const SizeT size, const BmAccessTypeT access_type, const HWord stored_value_hi, const HWord stored_value_lo) argument
139 drd_report_race(const Addr addr, const SizeT size, const BmAccessTypeT access_type) argument
[all...]
H A Ddrd_bitmap.c121 * 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 a
129 bm_access_range(struct bitmap* const bm, const Addr a1, const Addr a2, const BmAccessTypeT access_type) argument
334 bm_has(struct bitmap* const bm, const Addr a1, const Addr a2, const BmAccessTypeT access_type) argument
537 bm_has_1(struct bitmap* const bm, const Addr a, const BmAccessTypeT access_type) argument
808 bm_has_conflict_with(struct bitmap* const bm, const Addr a1, const Addr a2, const BmAccessTypeT access_type) argument
[all...]
H A Ddrd_thread.c1275 const BmAccessTypeT access_type,
1299 access_type)) {
1330 const BmAccessTypeT access_type)
1338 if (DRD_(bm_has)(DRD_(sg_bm)(p), addr, addr + size, access_type))
1340 access_type, p);
1272 thread_report_conflicting_segments_segment(const DrdThreadId tid, const Addr addr, const SizeT size, const BmAccessTypeT access_type, const Segment* const p) argument
1327 thread_report_conflicting_segments(const DrdThreadId tid, const Addr addr, const SizeT size, const BmAccessTypeT access_type) argument
/external/qemu/target-arm/
H A Dhelper.c967 static inline int check_ap(CPUState *env, int ap, int domain, int access_type, argument
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, argument
1110 *prot = check_ap(env, ap, domain, access_type, is_user);
1122 static int get_phys_addr_v6(CPUState *env, uint32_t address, int access_type, argument
1201 if (xn && access_type == 2)
1210 *prot = check_ap(env, ap, domain, access_type, is_user);
1225 static int get_phys_addr_mpu(CPUState *env, uint32_t address, int access_type, argument
1247 if (access_type
1293 get_phys_addr(CPUState *env, uint32_t address, int access_type, int is_user, uint32_t *phys_ptr, int *prot, target_ulong *page_size) argument
1321 cpu_arm_handle_mmu_fault(CPUState *env, target_ulong address, int access_type, int mmu_idx, int is_softmmu) argument
1589 int access_type = op2 & 1; local
[all...]
/external/v8/src/
H A Druntime.cc903 v8::AccessType access_type) {
909 (access_type == v8::ACCESS_HAS &&
911 (access_type == v8::ACCESS_GET && info->all_can_read()) ||
912 (access_type == v8::ACCESS_SET && info->all_can_write());
924 v8::AccessType access_type) {
932 !isolate->MayNamedAccess(current, name, access_type)) {
949 if (CheckAccessException(result, access_type)) {
959 if (CheckAccessException(result, access_type)) {
969 isolate->ReportFailedAccessCheck(current, access_type);
977 v8::AccessType access_type) {
902 CheckAccessException(LookupResult* result, v8::AccessType access_type) argument
921 CheckAccess(JSObject* obj, String* name, LookupResult* result, v8::AccessType access_type) argument
975 CheckElementAccess(JSObject* obj, uint32_t index, v8::AccessType access_type) argument
[all...]

Completed in 184 milliseconds