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

/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcall_main.cc59 debug_input_buf_(NULL), debug_input_len_(0), debug_input_alloc_(0),
65 int debug_input_alloc_; member in class:DebugLog
72 if (debug_input_len_ + len > debug_input_alloc_) {
74 debug_input_alloc_ = 4096;
75 while (debug_input_alloc_ < debug_input_len_ + len) {
76 debug_input_alloc_ *= 2;
78 debug_input_buf_ = new char[debug_input_alloc_];

Completed in 116 milliseconds