Lines Matching defs:buffer
180 base::Vector<char> buffer(utf8_buffer_ + utf8_pos_, space);
181 int size = SNPrintF(buffer, "%d", n);
190 base::Vector<char> buffer(utf8_buffer_ + utf8_pos_, space);
191 int size = SNPrintF(buffer, "%x", n);
877 // Each sample is appended to a circular buffer.
887 // Inserts collected profiling data into buffer.
912 // Returns the next index in the cyclic buffer.
916 // Cyclic buffer for communicating profiling samples
920 int head_; // Index to the buffer head.
921 base::Atomic32 tail_; // Index to the buffer tail.
922 bool overflow_; // Tell whether a buffer overflow has occurred.
923 // Semaphore used for buffer synchronization.
1000 // Start thread processing the profiler buffer.
1370 std::ostringstream buffer;
1371 vector.FeedbackVectorPrint(buffer);
1372 std::string contents = buffer.str();
1823 std::ostringstream buffer;
1824 map.PrintMapDetails(buffer);
1825 msg << buffer.str().c_str();