/external/google-breakpad/src/processor/ |
D | stackwalker_ppc.cc | 53 if (memory_ && memory_->GetBase() + memory_->GetSize() - 1 > 0xffffffff) { in StackwalkerPPC() 58 HexString(memory_->GetBase()) << "+" << in StackwalkerPPC() 59 HexString(memory_->GetSize()); in StackwalkerPPC() 60 memory_ = NULL; in StackwalkerPPC() 86 if (!memory_ || !stack) { in GetCallerFrame() 107 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 119 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) || in GetCallerFrame()
|
D | stackwalker_x86.cc | 96 if (memory_ && memory_->GetBase() + memory_->GetSize() - 1 > 0xffffffff) { in StackwalkerX86() 100 HexString(memory_->GetBase()) << "+" << in StackwalkerX86() 101 HexString(memory_->GetSize()); in StackwalkerX86() 102 memory_ = NULL; in StackwalkerX86() 365 PostfixEvaluator<uint32_t>(&dictionary, memory_); in GetCallerByWindowsFrameInfo() 453 if (has_skipped_frames || !memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo() 461 if (!memory_->GetMemoryAtAddress(location, &ebp)) in GetCallerByWindowsFrameInfo() 464 if (memory_->GetMemoryAtAddress(ebp, &value)) { in GetCallerByWindowsFrameInfo() 514 .FindCallerRegisters(*memory_, *cfi_frame_info, in GetCallerByCFIFrameInfo() 564 if (memory_->GetMemoryAtAddress(last_ebp + 4, &caller_eip) && in GetCallerByEBPAtBase() [all …]
|
D | stackwalker_mips.cc | 58 if (memory_ && memory_->GetBase() + memory_->GetSize() - 1 > 0xffffffff) { in StackwalkerMIPS() 60 << HexString(memory_->GetBase()) in StackwalkerMIPS() 62 << HexString(memory_->GetSize()); in StackwalkerMIPS() 63 memory_ = NULL; in StackwalkerMIPS() 111 if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_, in GetCallerByCFIFrameInfo() 170 if (!memory_ || !stack) { in GetCallerFrame() 252 if (!memory_->GetMemoryAtAddress(caller_sp - sizeof(caller_pc), in GetCallerByStackScan()
|
D | stackwalker_ppc64.cc | 77 if (!memory_ || !stack) { in GetCallerFrame() 98 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame() 110 if (!memory_->GetMemoryAtAddress(stack_pointer + 16, &instruction) || in GetCallerFrame()
|
D | stackwalker_sparc.cc | 77 if (!memory_ || !stack) { in GetCallerFrame() 103 if (!memory_->GetMemoryAtAddress(stack_pointer + 60, in GetCallerFrame() 109 if (!memory_->GetMemoryAtAddress(stack_pointer + 56, in GetCallerFrame()
|
D | stackwalker_amd64.cc | 135 .FindCallerRegisters(*memory_, *cfi_frame_info, in GetCallerByCFIFrameInfo() 173 if (memory_->GetMemoryAtAddress(last_rbp + 8, &caller_rip) && in GetCallerByFramePointerRecovery() 174 memory_->GetMemoryAtAddress(last_rbp, &caller_rbp)) { in GetCallerByFramePointerRecovery() 230 if (memory_->GetMemoryAtAddress(last_frame->context.rbp, &caller_rbp) && in GetCallerByStackScan() 248 if (!memory_ || !stack) { in GetCallerFrame()
|
D | postfix_evaluator.h | 99 : dictionary_(dictionary), memory_(memory), stack_() {} in PostfixEvaluator() 168 const MemoryRegion *memory_; variable
|
D | stackwalker_arm64.cc | 100 if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_, in GetCallerByCFIFrameInfo() 192 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 199 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 8, &caller_lr)) { in GetCallerByFramePointer() 228 if (!memory_ || !stack) { in GetCallerFrame()
|
D | stackwalker_arm.cc | 100 if (!cfi_frame_info->FindCallerRegs(callee_registers, *memory_, in GetCallerByCFIFrameInfo() 206 if (last_fp && !memory_->GetMemoryAtAddress(last_fp, &caller_fp)) { in GetCallerByFramePointer() 213 if (last_fp && !memory_->GetMemoryAtAddress(last_fp + 4, &caller_lr)) { in GetCallerByFramePointer() 242 if (!memory_ || !stack) { in GetCallerFrame()
|
D | postfix_evaluator-inl.h | 145 if (!memory_) { in EvaluateToken() 159 if (!memory_->GetMemoryAtAddress(address, &value)) { in EvaluateToken()
|
D | minidump.cc | 1194 memory_(NULL) { in MinidumpMemoryRegion() 1199 delete memory_; in ~MinidumpMemoryRegion() 1218 if (!memory_) { in GetMemory() 1244 memory_ = memory.release(); in GetMemory() 1247 return &(*memory_)[0]; in GetMemory() 1272 delete memory_; in FreeMemory() 1273 memory_ = NULL; in FreeMemory() 1374 memory_(NULL), in MinidumpThread() 1380 delete memory_; in ~MinidumpThread() 1387 delete memory_; in Read() [all …]
|
D | stackwalker.cc | 73 memory_(memory), in Stackwalker()
|
/external/v8/src/regexp/ |
D | regexp-stack.cc | 52 DeleteArray(thread_local_.memory_); in Reset() 60 DeleteArray(memory_); in Free() 75 reinterpret_cast<void*>(thread_local_.memory_), in EnsureCapacity() 77 DeleteArray(thread_local_.memory_); in EnsureCapacity() 79 thread_local_.memory_ = new_memory; in EnsureCapacity() 83 return thread_local_.memory_ + thread_local_.memory_size_; in EnsureCapacity()
|
D | regexp-stack.h | 49 return thread_local_.memory_ + thread_local_.memory_size_; in stack_base() 91 Address memory_; member 95 memory_ = NULL; in Clear() 104 return reinterpret_cast<Address>(&thread_local_.memory_); in memory_address()
|
/external/v8/test/unittests/heap/ |
D | bitmap-unittest.cc | 19 BitmapTest() : memory_(new uint8_t[Bitmap::kSize]) { in BitmapTest() 20 memset(memory_, 0, Bitmap::kSize); in BitmapTest() 23 virtual ~BitmapTest() { delete[] memory_; } in ~BitmapTest() 25 Bitmap* bitmap() { return reinterpret_cast<Bitmap*>(memory_); } in bitmap() 26 uint8_t* raw_bitmap() { return memory_; } in raw_bitmap() 29 uint8_t* memory_; member in __anonaf099f6b0111::BitmapTest
|
/external/google-breakpad/src/common/mac/ |
D | macho_walker.cc | 55 memory_(NULL), in MachoWalker() 68 memory_(memory), in MachoWalker() 104 if (memory_) { in ReadBytes() 114 memcpy(buffer, static_cast<char *>(memory_) + offset, size); in ReadBytes()
|
D | macho_id.cc | 59 : memory_(0), in MachoID() 68 : memory_(memory), in MachoID() 243 if (memory_) { in WalkHeader() 244 MachoWalker walker(memory_, memory_size_, callback, context); in WalkHeader()
|
D | macho_walker.h | 94 void *memory_; variable
|
D | macho_id.h | 114 void *memory_; variable
|
/external/webp/src/enc/ |
D | picture.c | 55 picture->memory_ = NULL; in WebPPictureResetBufferYUVA() 103 WebPSafeFree(picture->memory_); in WebPPictureAllocYUVA() 131 picture->memory_ = (void*)mem; in WebPPictureAllocYUVA() 171 WebPSafeFree(picture->memory_); in WebPPictureFree()
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | stackwalker.h | 166 if (!memory_->GetMemoryAtAddress(location, &ip)) in ScanForReturnAddress() 186 MemoryRegion* memory_; variable
|
D | minidump.h | 256 mutable vector<uint8_t>* memory_; variable 305 MinidumpMemoryRegion* memory_; variable
|
/external/v8/src/base/platform/ |
D | platform-posix.cc | 278 : file_(file), memory_(memory), size_(size) {} in PosixMemoryMappedFile() 280 void* memory() const final { return memory_; } in memory() 285 void* const memory_; member in v8::base::PosixMemoryMappedFile 329 if (memory_) OS::Free(memory_, size_); in ~PosixMemoryMappedFile()
|
D | platform-win32.cc | 861 memory_(memory), in Win32MemoryMappedFile() 864 void* memory() const final { return memory_; } in memory() 870 void* const memory_; member in v8::base::Win32MemoryMappedFile 915 if (memory_) UnmapViewOfFile(memory_); in ~Win32MemoryMappedFile()
|
/external/libchrome/base/memory/ |
D | shared_memory.h | 208 void* memory() const { return memory_; } in memory() 304 void* memory_; variable
|