HomeSort by relevance Sort by last modified time
    Searched defs:new_frame (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
stats.py 40 frame = self.new_frame(filename, lineno, funcname)
54 def new_frame(self, *args): member in class:StatsLoader
  /external/python/cpython2/Lib/hotshot/
stats.py 40 frame = self.new_frame(filename, lineno, funcname)
54 def new_frame(self, *args): member in class:StatsLoader
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
stats.py 40 frame = self.new_frame(filename, lineno, funcname)
54 def new_frame(self, *args): member in class:StatsLoader
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
stats.py 40 frame = self.new_frame(filename, lineno, funcname)
54 def new_frame(self, *args): member in class:StatsLoader
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stats.py 40 frame = self.new_frame(filename, lineno, funcname)
54 def new_frame(self, *args): member in class:StatsLoader
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stats.py 40 frame = self.new_frame(filename, lineno, funcname)
54 def new_frame(self, *args): member in class:StatsLoader
  /external/google-breakpad/src/processor/
stackwalker_amd64.cc 255 scoped_ptr<StackFrameAMD64> new_frame; local
261 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
264 if (!new_frame.get()) {
265 new_frame.reset(GetCallerByFramePointerRecovery(frames));
269 if (stack_scan_allowed && !new_frame.get()) {
270 new_frame.reset(GetCallerByStackScan(frames));
274 if (!new_frame.get())
282 new_frame->context.rip = static_cast<uint32_t>(new_frame->context.rip);
283 new_frame->context.rsp = static_cast<uint32_t>(new_frame->context.rsp)
    [all...]
stackwalker_mips.cc 177 scoped_ptr<StackFrameMIPS> new_frame; local
183 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info.get()));
186 if (stack_scan_allowed && !new_frame.get()) {
187 new_frame.reset(GetCallerByStackScan(frames));
191 if (!new_frame.get()) {
196 if (new_frame->context.epc == 0) {
203 if (new_frame->context.iregs[MD_CONTEXT_MIPS_REG_SP] <=
208 return new_frame.release();
stackwalker_x86.cc 627 scoped_ptr<StackFrameX86> new_frame; local
633 new_frame.reset(GetCallerByWindowsFrameInfo(frames, windows_frame_info,
637 if (!new_frame.get()) {
641 new_frame.reset(GetCallerByCFIFrameInfo(frames, cfi_frame_info));
645 if (!new_frame.get())
646 new_frame.reset(GetCallerByEBPAtBase(frames, stack_scan_allowed));
649 if (!new_frame.get())
653 if (new_frame->context.eip == 0)
659 if (new_frame->context.esp <= last_frame->context.esp)
662 // new_frame->context.eip is the return address, which is the instructio
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoframe.cc 152 WebRtcVideoFrame* new_frame = new WebRtcVideoFrame( local
154 new_frame->pixel_width_ = pixel_width_;
155 new_frame->pixel_height_ = pixel_height_;
156 return new_frame;
  /art/runtime/
quick_exception_handler.cc 361 ShadowFrame* new_frame = GetThread()->FindDebuggerShadowFrame(frame_id); local
365 if (new_frame == nullptr) {
366 new_frame = ShadowFrame::CreateDeoptimizedFrame(num_regs, nullptr, method, GetDexPc());
372 HandleOptimizingDeoptimization(method, new_frame, updated_vregs);
380 prev_shadow_frame_->SetLink(new_frame);
386 new_frame, StackedShadowFrameType::kDeoptimizationShadowFrame);
388 prev_shadow_frame_ = new_frame;
403 ShadowFrame* new_frame,
488 new_frame->SetVRegReference(vreg, reinterpret_cast<mirror::Object*>(value));
490 new_frame->SetVReg(vreg, value)
    [all...]
  /external/webrtc/webrtc/video/
video_send_stream_tests.cc 2092 bool new_frame = packets_sent_ == 0 || local
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.cc 3524 Frame* const new_frame = new (std::nothrow) Frame(); local
3554 Frame* const new_frame = new (std::nothrow) Frame(); local
    [all...]

Completed in 645 milliseconds