HomeSort by relevance Sort by last modified time
    Searched refs:debug_output_alloc_ (Results 1 - 3 of 3) sorted by null

  /external/chromium/third_party/libjingle/source/talk/examples/call/
call_main.cc 53 debug_output_buf_(NULL), debug_output_len_(0), debug_output_alloc_(0),
61 int debug_output_alloc_; member in class:DebugLog
81 if (debug_output_len_ + len > debug_output_alloc_) {
83 debug_output_alloc_ = 4096;
84 while (debug_output_alloc_ < debug_output_len_ + len) {
85 debug_output_alloc_ *= 2;
87 debug_output_buf_ = new char[debug_output_alloc_];
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc 62 debug_output_buf_(NULL), debug_output_len_(0), debug_output_alloc_(0),
70 int debug_output_alloc_; member in class:DebugLog
90 if (debug_output_len_ + len > debug_output_alloc_) {
92 debug_output_alloc_ = 4096;
93 while (debug_output_alloc_ < debug_output_len_ + len) {
94 debug_output_alloc_ *= 2;
96 debug_output_buf_ = new char[debug_output_alloc_];
  /external/chromium_org/third_party/libjingle/source/talk/examples/pcp/
pcp_main.cc 70 debug_output_buf_(NULL), debug_output_len_(0), debug_output_alloc_(0),
78 int debug_output_alloc_; member in class:DebugLog
98 if (debug_output_len_ + len > debug_output_alloc_) {
100 debug_output_alloc_ = 4096;
101 while (debug_output_alloc_ < debug_output_len_ + len) {
102 debug_output_alloc_ *= 2;
104 debug_output_buf_ = new char[debug_output_alloc_];

Completed in 3335 milliseconds