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

  /external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 786 CodedInputStream::Limit limit = coded_input.PushLimit(8); local
788 // Read until we hit the limit.
798 coded_input.PopLimit(limit);
816 CodedInputStream::Limit limit1 = coded_input.PushLimit(8);
818 CodedInputStream::Limit limit2 = coded_input.PushLimit(4);
822 // Read until we hit limit2, the top and shortest limit.
849 // longer. In this case, the top limit is shortened to match the previous
850 // limit.
858 CodedInputStream::Limit limit1 = coded_input.PushLimit(4)
897 CodedInputStream::Limit limit = coded_input.PushLimit(4); local
912 CodedInputStream::Limit limit = coded_input.PushLimit(-1234); local
925 CodedInputStream::Limit limit = coded_input.PushLimit(-64); local
939 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX); local
978 CodedInputStream::Limit limit = coded_input.PushLimit(16); local
    [all...]
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
157 // successfully and the stream's byte limit.
275 // limit.
280 typedef int Limit;
282 // Places a limit on the number of bytes that the stream may read,
283 // starting from the current position. Once the stream hits this limit,
288 // shortest limit on the stack is always enforced, even if it is not the
289 // top limit.
293 Limit PushLimit(int byte_limit);
295 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
coded_stream.cc 81 // The limit position is in the current buffer. We must adjust
90 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
95 Limit old_limit = current_limit_;
108 // limit was before the new requested limit, we continue to enforce the
109 // previous limit.
116 void CodedInputStream::PopLimit(Limit limit) {
117 // The limit passed in is actually the *old* limit, which we returned fro
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 38 # ATTRIBUTE RP-Upstream-Speed-Limit 1 integer RoaringPenguin
41 # RP-Upstream-Speed-Limit, number 1, type integer and vendor RoaringPenguin.
87 ATTRIBUTE Port-Limit 62 integer
124 # Limit session traffic
125 ATTRIBUTE Session-Octets-Limit 227 integer
126 # What to assume as limit - 0 in+out, 1 in, 2 out, 3 max(in,out)
dictionary.microsoft 26 ATTRIBUTE MS-Link-Drop-Time-Limit 15 integer Microsoft
dictionary.ascend 17 ATTRIBUTE Ascend-Call-Attempt-Limit 123 integer
46 ATTRIBUTE Ascend-Multicast-Rate-Limit 152 integer
63 ATTRIBUTE Ascend-TS-Idle-Limit 169 integer
136 ATTRIBUTE Ascend-Idle-Limit 244 integer
137 ATTRIBUTE Ascend-Preempt-Limit 245 integer
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 194 io::CodedInputStream::Limit limit = input->PushLimit(length);
205 input->PopLimit(limit);
wire_format_lite_inl.h 327 io::CodedInputStream::Limit limit = input->PushLimit(length);
333 input->PopLimit(limit);
361 io::CodedInputStream::Limit limit = input->PushLimit(length);
363 // Make sure that parsing stopped when the limit was hit, not at an endgroup
366 input->PopLimit(limit);
390 io::CodedInputStream::Limit limit = input->PushLimit(length);
392 // Make sure that parsing stopped when the limit was hit, not at an endgrou
    [all...]
wire_format.cc 450 io::CodedInputStream::Limit limit = input->PushLimit(length);
508 input->PopLimit(limit);
    [all...]
extension_set.cc 729 io::CodedInputStream::Limit limit = input->PushLimit(size);
    [all...]
  /external/v8/tools/
tickprocessor.js 538 // Limit backtrace depth.
  /external/v8/src/
mirror-debugger.js 614 * @param {number} limit Limit the number of names returend to the specified
618 ObjectMirror.prototype.propertyNames = function(kind, limit) {
619 // Find kind and limit and allocate array for the result
659 limit = Math.min(limit || total, total);
661 var names = new Array(limit);
666 for (var i = 0; index < limit && i < propertyNames.length; i++) {
673 for (var i = 0; index < limit && i < elementNames.length; i++) {
686 * @param {number} limit Limit the number of properties returend to th
    [all...]

Completed in 306 milliseconds