Home
last modified time | relevance | path

Searched refs:debug_input_alloc_ (Results 1 – 1 of 1) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/examples/call/
Dcall_main.cc52 debug_input_buf_(NULL), debug_input_len_(0), debug_input_alloc_(0), in DebugLog()
58 int debug_input_alloc_; member in DebugLog
65 if (debug_input_len_ + len > debug_input_alloc_) { in Input()
67 debug_input_alloc_ = 4096; in Input()
68 while (debug_input_alloc_ < debug_input_len_ + len) { in Input()
69 debug_input_alloc_ *= 2; in Input()
71 debug_input_buf_ = new char[debug_input_alloc_]; in Input()