length 294 cygnal/http_server.cpp size_t length = strtol(getField("content-length").c_str(), NULL, 0);
length 295 cygnal/http_server.cpp boost::shared_ptr<cygnal::Buffer> content(new cygnal::Buffer(length));
length 299 cygnal/http_server.cpp content->copy(data, length);
length 300 cygnal/http_server.cpp ret = length;
length 540 cygnal/http_server.cpp boost::uint16_t length;
length 541 cygnal/http_server.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 551 cygnal/http_server.cpp boost::uint8_t *endstr = std::find(tmpptr, tmpptr+length, '\0');
length 552 cygnal/http_server.cpp if (endstr != tmpptr+length) {
length 554 cygnal/http_server.cpp length, endstr-tmpptr);
length 555 cygnal/http_server.cpp length = endstr-tmpptr;
length 557 cygnal/http_server.cpp el1->setName(tmpptr, length);
length 558 cygnal/http_server.cpp tmpptr += length;
length 563 cygnal/http_server.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 572 cygnal/http_server.cpp endstr = std::find(tmpptr, tmpptr+length, '\0');
length 573 cygnal/http_server.cpp if (endstr != tmpptr+length) {
length 575 cygnal/http_server.cpp length, endstr-tmpptr);
length 576 cygnal/http_server.cpp length = endstr-tmpptr;
length 578 cygnal/http_server.cpp el2->setName(tmpptr, length);
length 580 cygnal/http_server.cpp tmpptr += length;
length 178 cygnal/libamf/amf.cpp boost::uint32_t length;
length 179 cygnal/libamf/amf.cpp length = data.propertySize();
length 180 cygnal/libamf/amf.cpp gnash::log_debug("Encoded data size has %d properties", length);
length 182 cygnal/libamf/amf.cpp if (length) {
length 336 cygnal/libamf/amf.cpp size_t length = data.getNameSize();
length 337 cygnal/libamf/amf.cpp boost::uint16_t enclength = length;
length 422 cygnal/libamf/amf.cpp boost::uint32_t length;
length 426 cygnal/libamf/amf.cpp length = data.propertySize();
length 429 cygnal/libamf/amf.cpp if (length == 0) {
length 435 cygnal/libamf/amf.cpp length = 0;
length 436 cygnal/libamf/amf.cpp swapBytes(&length, sizeof(boost::uint32_t));
length 437 cygnal/libamf/amf.cpp *buf += length;
length 631 cygnal/libamf/amf.cpp boost::uint16_t length = size;
length 633 cygnal/libamf/amf.cpp swapBytes(&length, 2);
length 634 cygnal/libamf/amf.cpp *buf += length;
length 648 cygnal/libamf/amf.cpp boost::uint16_t length;
length 656 cygnal/libamf/amf.cpp length = 0;
length 657 cygnal/libamf/amf.cpp *buf += length;
length 801 cygnal/libamf/amf.cpp size_t length = el.getNameSize();
length 802 cygnal/libamf/amf.cpp boost::uint16_t enclength = length;
length 836 cygnal/libamf/amf.cpp size_t length = el->getNameSize();
length 837 cygnal/libamf/amf.cpp boost::uint16_t enclength = length;
length 909 cygnal/libamf/amf.cpp boost::uint16_t length;
length 975 cygnal/libamf/amf.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 977 cygnal/libamf/amf.cpp if (length >= SANE_STR_SIZE) {
length 979 cygnal/libamf/amf.cpp "limit of %d, line %d", length,
length 985 cygnal/libamf/amf.cpp if (length > 0) {
length 987 cygnal/libamf/amf.cpp el->makeString(tmpptr, length);
length 989 cygnal/libamf/amf.cpp tmpptr += length;
length 1031 cygnal/libamf/amf.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 1033 cygnal/libamf/amf.cpp el->makeReference(length);
length 1136 cygnal/libamf/amf.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 1138 cygnal/libamf/amf.cpp if (length > 0) {
length 1139 cygnal/libamf/amf.cpp std::string name(reinterpret_cast<const char*>(tmpptr), length);
length 1144 cygnal/libamf/amf.cpp if (tmpptr + length < tooFar) {
length 1145 cygnal/libamf/amf.cpp tmpptr += length;
length 1148 cygnal/libamf/amf.cpp while (tmpptr < tooFar - length) {
length 1219 cygnal/libamf/amf.cpp boost::uint16_t length;
length 1222 cygnal/libamf/amf.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 1232 cygnal/libamf/amf.cpp if (length <= 0) {
length 1238 cygnal/libamf/amf.cpp if (length + tmpptr > tooFar) {
length 1239 cygnal/libamf/amf.cpp log_error("%d bytes for a string is over the safe limit of %d. Putting the rest of the buffer into the string, line %d", length, SANE_STR_SIZE, __LINE__);
length 1240 cygnal/libamf/amf.cpp length = tooFar - tmpptr;
length 1243 cygnal/libamf/amf.cpp if (length >= SANE_STR_SIZE) {
length 1244 cygnal/libamf/amf.cpp gnash::log_error("%d bytes for a string is over the safe limit of %d. Putting the rest of the buffer into the string, line %d", length, SANE_STR_SIZE, __LINE__);
length 1250 cygnal/libamf/amf.cpp std::string name(reinterpret_cast<const char *>(tmpptr), length);
length 1253 cygnal/libamf/amf.cpp if (tmpptr + length < tooFar) {
length 1254 cygnal/libamf/amf.cpp tmpptr += length;
length 85 cygnal/libamf/amf_msg.cpp boost::uint16_t length = head->target.size();
length 86 cygnal/libamf/amf_msg.cpp *buf = length;
length 90 cygnal/libamf/amf_msg.cpp length = head->response.size();
length 91 cygnal/libamf/amf_msg.cpp *buf += length;
length 140 cygnal/libamf/amf_msg.cpp boost::uint16_t length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 141 cygnal/libamf/amf_msg.cpp if (length == 0) {
length 147 cygnal/libamf/amf_msg.cpp std::string str1(reinterpret_cast<const char *>(tmpptr), length);
length 151 cygnal/libamf/amf_msg.cpp msg % length % size;
length 154 cygnal/libamf/amf_msg.cpp tmpptr += length;
length 158 cygnal/libamf/amf_msg.cpp length = ntohs((*(boost::uint16_t *)tmpptr) & 0xffff);
length 159 cygnal/libamf/amf_msg.cpp if (length == 0) {
length 165 cygnal/libamf/amf_msg.cpp std::string str2(reinterpret_cast<const char *>(tmpptr), length);
length 167 cygnal/libamf/amf_msg.cpp tmpptr += length;
length 170 cygnal/libamf/amf_msg.cpp msg % length % size;
length 286 cygnal/libamf/amf_msg.cpp boost::uint16_t length = target.size();
length 287 cygnal/libamf/amf_msg.cpp swapBytes(&length, sizeof(boost::uint16_t));
length 288 cygnal/libamf/amf_msg.cpp *buf += length;
length 291 cygnal/libamf/amf_msg.cpp length = response.size();
length 292 cygnal/libamf/amf_msg.cpp swapBytes(&length, sizeof(boost::uint16_t));
length 293 cygnal/libamf/amf_msg.cpp *buf += length;
length 29 cygnal/libamf/amfutf8.h short length;
length 35 cygnal/libamf/amfutf8.h int length;
length 364 cygnal/libamf/buffer.cpp boost::uint8_t *ptr = reinterpret_cast<boost::uint8_t *>(&length);
length 377 cygnal/libamf/buffer.cpp boost::uint8_t *ptr = reinterpret_cast<boost::uint8_t *>(&length);
length 458 cygnal/libamf/buffer.cpp boost::uint8_t *ptr = reinterpret_cast<boost::uint8_t *>(&length);
length 182 cygnal/libamf/buffer.h Buffer &operator=(boost::uint16_t length);
length 250 cygnal/libamf/buffer.h Buffer &operator+=(boost::uint32_t length);
length 256 cygnal/libamf/buffer.h Buffer &operator+=(boost::uint16_t length);
length 485 cygnal/libamf/element.cpp size_t length = getNameSize();
length 486 cygnal/libamf/element.cpp boost::uint16_t enclength = length;
length 153 cygnal/libamf/flv.cpp boost::uint16_t length;
length 154 cygnal/libamf/flv.cpp length = ntohs((*(boost::uint16_t *)ptr) & 0xffff);
length 155 cygnal/libamf/flv.cpp if (length >= SANE_STR_SIZE) {
length 157 cygnal/libamf/flv.cpp length, SANE_STR_SIZE);
length 160 cygnal/libamf/flv.cpp std::string name(reinterpret_cast<const char *>(ptr), length);
length 161 cygnal/libamf/flv.cpp ptr += length;
length 167 cygnal/libamf/flv.cpp _metadata->setName(name.c_str(), length);
length 124 cygnal/libamf/lcshm.h boost::uint32_t length;
length 394 cygnal/libamf/sol.cpp boost::uint32_t length = *(reinterpret_cast<boost::uint32_t *>(ptr));
length 395 cygnal/libamf/sol.cpp length = ntohl(length);
length 403 cygnal/libamf/sol.cpp if (bodysize == length) {
length 409 cygnal/libamf/sol.cpp filespec, (_filesize - 6), length);
length 527 cygnal/libnet/http.cpp size_t length = strtol(getField("content-length").c_str(), NULL, 0);
length 528 cygnal/libnet/http.cpp boost::shared_ptr<cygnal::Buffer> content(new cygnal::Buffer(length));
length 532 cygnal/libnet/http.cpp content->copy(data, length);
length 533 cygnal/libnet/http.cpp ret = length;
length 642 cygnal/libnet/http.cpp std::string length = getField("content-length");
length 643 cygnal/libnet/http.cpp if (length.size() > 0) {
length 644 cygnal/libnet/http.cpp return static_cast<size_t>(strtol(length.c_str(), NULL, 0));
length 60 cygnal/libnet/sshclient.h int sshRead(boost::uint8_t *buf, size_t length);
length 65 cygnal/libnet/sshclient.h int sshWrite(const boost::uint8_t *buf, size_t length);
length 158 cygnal/libnet/sslclient.cpp int ret = SSL_write(_ssl.get(), buf, length);
length 63 cygnal/libnet/sslclient.h int sslRead(boost::uint8_t *buf, size_t length);
length 68 cygnal/libnet/sslclient.h int sslWrite(const boost::uint8_t *buf, size_t length);
length 258 cygnal/testsuite/libamf.all/test_buffer.cpp boost::uint16_t length = 12;
length 260 cygnal/testsuite/libamf.all/test_buffer.cpp buf3 = length;
length 263 cygnal/testsuite/libamf.all/test_buffer.cpp if (length == newlen) {
length 426 cygnal/testsuite/libamf.all/test_buffer.cpp boost::uint16_t length = 1047;
length 429 cygnal/testsuite/libamf.all/test_buffer.cpp buf7 += length;
length 430 cygnal/testsuite/libamf.all/test_buffer.cpp if (memcmp(buf7.reference() + 10, &length, sizeof(boost::uint16_t)) == 0) {
length 394 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == AMF0_NUMBER_SIZE)) {
length 403 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == newel.length) &&
length 405 cygnal/testsuite/libamf.all/test_lc.cpp (memcmp(el.data, newel.data, el.length) == 0)) {
length 417 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 1)) {
length 427 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == newel.length) &&
length 428 cygnal/testsuite/libamf.all/test_lc.cpp (memcmp(el.data, newel.data, el.length) == 0)) {
length 441 cygnal/testsuite/libamf.all/test_lc.cpp (memcmp(el.data, data.c_str(), el.length) == 0) &&
length 442 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == data.size())) {
length 453 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 0)) {
length 466 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == AMF0_NUMBER_SIZE)) {
length 477 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 1)) {
length 488 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 1)) {
length 499 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 1)) {
length 510 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 1)) {
length 530 cygnal/testsuite/libamf.all/test_lc.cpp el.length = 0;
length 539 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == 0)) {
length 555 cygnal/testsuite/libamf.all/test_lc.cpp (el.length == AMF0_NUMBER_SIZE)) {
length 696 gui/Player.cpp size_t len = requestString.length();
length 346 gui/fb/fb.cpp var_screeninfo.red.length);
length 348 gui/fb/fb.cpp var_screeninfo.green.length);
length 350 gui/fb/fb.cpp var_screeninfo.blue.length);
length 354 gui/fb/fb.cpp var_screeninfo.red.offset, var_screeninfo.red.length,
length 355 gui/fb/fb.cpp var_screeninfo.green.offset, var_screeninfo.green.length,
length 356 gui/fb/fb.cpp var_screeninfo.blue.offset, var_screeninfo.blue.length,
length 777 gui/fb/fb.cpp ptr->red.length = 5;
length 779 gui/fb/fb.cpp ptr->green.length = 6;
length 781 gui/fb/fb.cpp ptr->blue.length = 5;
length 784 gui/fb/fb.cpp ptr->transp.length = 0;
length 48 libbase/GnashImageGif.cpp return in->read(reinterpret_cast<char*>(data), length);
length 67 libbase/GnashImagePng.cpp in->read(reinterpret_cast<char*>(data), length);
length 76 libbase/GnashImagePng.cpp out->write(reinterpret_cast<char*>(data), length);
length 385 libbase/URL.cpp for (unsigned int i=0;i<input.length(); i++) {
length 411 libbase/URL.cpp for (unsigned int i=0; i<input.length(); i++) {
length 412 libbase/URL.cpp if (input[i] == '%' && (input.length() > i + 2) &&
length 122 libbase/URLAccessManager.cpp size_t dirLen = dir.length();
length 123 libbase/URLAccessManager.cpp if ( dirLen > path.length() ) return false; // can't contain it, right ?
length 49 libbase/log.cpp const std::vector<unsigned char> bytes(p, p + length);
length 329 libbase/log.h DSOEXPORT std::string hexify(const unsigned char *bytes, size_t length,
length 289 libbase/utf8.cpp length = 0;
length 293 libbase/utf8.cpp ++length;
length 317 libbase/utf8.cpp length = 0;
length 333 libbase/utf8.cpp ++length;
length 359 libbase/utf8.cpp length = str.size();
length 361 libbase/utf8.cpp length = std::mbstowcs(NULL, str.c_str(), 0);
length 363 libbase/utf8.cpp if (length == -1)
length 365 libbase/utf8.cpp length = str.length();
length 159 libbase/utf8.h EncodingGuess guessEncoding(const std::string& s, int& length,
length 295 libcore/AMFConverter.cpp _buf.append(data, length);
length 95 libcore/AMFConverter.h void writeData(const boost::uint8_t* data, size_t length);
length 1484 libcore/TextField.cpp attloc->second.substr(1,attloc->second.length()-1).data(),
length 1490 libcore/TextField.cpp attloc->second.substr(1,attloc->second.length()-1).data(),
length 1495 libcore/TextField.cpp attloc->second.substr(1,attloc->second.length()-1).data(),
length 1501 libcore/TextField.cpp attloc->second.substr(1,attloc->second.length()-1).data(),
length 2496 libcore/TextField.cpp setSelection(0, _text.length());
length 534 libcore/abc/AbcBlock.cpp boost::uint32_t length = _stream->read_V32();
length 535 libcore/abc/AbcBlock.cpp _stream->read_string_with_length(length, _stringPool[i]);
length 78 libcore/abc/Method.h void setBodyLength(boost::uint32_t length){ _bodyLength = length;}
length 797 libcore/as_value.cpp const std::string::size_type slen = s.length();
length 840 libcore/asobj/Array_as.cpp const as_value& length = getOwnProperty(array, NSV::PROP_LENGTH);
length 841 libcore/asobj/Array_as.cpp if (length.is_undefined()) return 0;
length 843 libcore/asobj/Array_as.cpp const int size = toInt(length, getVM(array));
length 1447 libcore/asobj/Array_as.cpp as_value length;
length 358 libcore/asobj/AsBroadcaster.cpp const int length = toInt(getMember(*listeners, NSV::PROP_LENGTH),
length 365 libcore/asobj/AsBroadcaster.cpp while (i < length) {
length 540 libcore/asobj/Global_as.cpp if ((expr.length() > 2) && (*it == '-' || *it == '+') &&
length 1048 libcore/asobj/SharedObject_as.cpp const boost::uint16_t len = name.length();
length 184 libcore/asobj/String_as.cpp size_t end = wstr.length();
length 390 libcore/asobj/String_as.cpp int num = wstr.length();
length 400 libcore/asobj/String_as.cpp num = wstr.length() + num;
length 583 libcore/asobj/String_as.cpp if (index >= wstr.length()) {
length 432 libcore/asobj/TextField_as.cpp return as_value(s.length()); // TOCHECK: utf-8 ?
length 1016 libcore/asobj/TextField_as.cpp if ( start > subject.length() )
length 1032 libcore/asobj/TextField_as.cpp if ( end > subject.length() )
length 321 libcore/asobj/XMLNode_as.cpp if (name.length() == 5) {
length 325 libcore/asobj/XMLNode_as.cpp assert (name.length() >= 6);
length 77 libcore/asobj/XMLNode_as.h size_t length() const { return _children.size(); }
length 861 libcore/asobj/XML_as.cpp const std::string::size_type len = match.length();
length 906 libcore/asobj/XML_as.cpp it = ourend + terminator.length();
length 121 libcore/parser/action_buffer.cpp const boost::uint16_t length = read_uint16(i + 1);
length 125 libcore/parser/action_buffer.cpp assert(start_pc + 3 + length == stop_pc);
length 187 libcore/parser/action_buffer.cpp size_t length = (instruction_data[1] | (instruction_data[2] << 8));
length 191 libcore/parser/action_buffer.cpp assert(length <= maxBufferLength - 3);
length 199 libcore/parser/action_buffer.cpp ss << hexify(&instruction_data[3], length, false) << " ";
length 205 libcore/parser/action_buffer.cpp hexify(&instruction_data[3], length, true);
length 236 libcore/parser/action_buffer.cpp while (i < length) {
length 249 libcore/parser/action_buffer.cpp while (instruction_data[3 + i] && i < length)
length 262 libcore/parser/action_buffer.cpp if (i + 4 > length) break;
length 298 libcore/parser/action_buffer.cpp if (i + 8 > length) break;
length 353 libcore/parser/action_buffer.cpp while (instruction_data[3 + i] && i < length)
length 369 libcore/parser/action_buffer.cpp while (instruction_data[3 + i] && i <= length)
length 376 libcore/parser/action_buffer.cpp if (i + 6 > length) break;
length 419 libcore/parser/action_buffer.cpp if (i >= length) break;
length 426 libcore/parser/action_buffer.cpp while (instruction_data[3 + i] && i <= length) {
length 435 libcore/parser/action_buffer.cpp if (i == length) break;
length 442 libcore/parser/action_buffer.cpp if (i + 2 > length) break;
length 877 libcore/vm/ASHandlers.cpp size = wstr.length();
length 899 libcore/vm/ASHandlers.cpp else if (static_cast<unsigned int>(start) > wstr.length()) {
length 912 libcore/vm/ASHandlers.cpp if (static_cast<unsigned int>(start + size) > wstr.length()) {
length 917 libcore/vm/ASHandlers.cpp size = wstr.length() - start;
length 922 libcore/vm/ASHandlers.cpp assert(static_cast<unsigned int>(start) < wstr.length() );
length 1471 libcore/vm/ASHandlers.cpp int length;
length 1473 libcore/vm/ASHandlers.cpp unused.resize(str.length()+1);
length 1474 libcore/vm/ASHandlers.cpp utf8::guessEncoding(str, length, unused);
length 1475 libcore/vm/ASHandlers.cpp env.top(0).set_double(length);
length 1565 libcore/vm/ASHandlers.cpp int length = 0;
length 1568 libcore/vm/ASHandlers.cpp utf8::EncodingGuess encoding = utf8::guessEncoding(str, length, offsets);
length 1575 libcore/vm/ASHandlers.cpp size = length;
length 1585 libcore/vm/ASHandlers.cpp else if ( start > length) {
length 1597 libcore/vm/ASHandlers.cpp if (size + start > length) {
length 1600 libcore/vm/ASHandlers.cpp "adjusting size based on length:%d and start:%d"), length, start);
length 1602 libcore/vm/ASHandlers.cpp size = length - start;
length 1752 libcore/vm/ASHandlers.cpp const boost::uint16_t length = code.read_uint16(pc + 1);
length 1757 libcore/vm/ASHandlers.cpp while (i - pc < length) {
length 3139 libcore/vm/ASHandlers.cpp i += name.length() + 1; // add NULL-termination
length 3336 libcore/vm/ASHandlers.cpp boost::int16_t length = code.read_int16(thread.getCurrentPC()+1);
length 3337 libcore/vm/ASHandlers.cpp assert( length >= 0 );
length 3367 libcore/vm/ASHandlers.cpp i += name.length() + 1;
length 228 libcore/vm/ActionExec.cpp boost::uint16_t length(code.read_int16(pc + 1));
length 230 libcore/vm/ActionExec.cpp next_pc = pc + length + 3;
length 236 libcore/vm/ActionExec.cpp length, static_cast<int>(length),
length 582 libcore/vm/ActionExec.cpp const boost::int16_t length = code.read_int16(next_pc + 1);
length 583 libcore/vm/ActionExec.cpp assert(length >= 0);
length 584 libcore/vm/ActionExec.cpp next_pc += length + 3;
length 697 libcore/vm/ActionExec.cpp const boost::int16_t length = code.read_int16(lpc + 1);
length 698 libcore/vm/ActionExec.cpp assert(length >= 0);
length 699 libcore/vm/ActionExec.cpp lpc += length + 3;
length 41 libmedia/gst/swfdec_codec_gst.c ret = gst_buffer_new_and_alloc (buffer->length);
length 42 libmedia/gst/swfdec_codec_gst.c memcpy (GST_BUFFER_DATA (ret), buffer->data, buffer->length);
length 113 plugin/klash/klash_part.cpp QString value = (*it).right ((*it).length () - equalPos - 1);
length 115 plugin/klash/klash_part.cpp value = value.right (value.length () - 1);
length 116 plugin/klash/klash_part.cpp if (value.at (value.length () - 1) == '\"')
length 117 plugin/klash/klash_part.cpp value.truncate (value.length () - 1);
length 496 plugin/klash/klash_part.cpp case length:
length 124 plugin/klash4/klash_part.cpp QString value = (*it).right ((*it).length () - equalPos - 1);
length 126 plugin/klash4/klash_part.cpp value = value.right (value.length () - 1);
length 127 plugin/klash4/klash_part.cpp if (value.at (value.length () - 1) == '\"')
length 128 plugin/klash4/klash_part.cpp value.truncate (value.length () - 1);
length 506 plugin/klash4/klash_part.cpp case length:
length 308 plugin/npapi/external.cpp int length = str.size();;
length 309 plugin/npapi/external.cpp char *data = (char *)NPN_MemAlloc(length+1);
length 311 plugin/npapi/external.cpp data[length] = 0; // terminate the new string or bad things happen
length 314 plugin/npapi/external.cpp STRINGN_TO_NPVARIANT(data, length, value);
length 1073 plugin/npapi/plugin.cpp uint32_t length = 0;
length 1077 plugin/npapi/plugin.cpp &cookie, &length);
length 1090 plugin/npapi/plugin.cpp ncookie.assign(cookie, length);
length 1142 plugin/npapi/plugin.cpp uint32_t length = 0;
length 1145 plugin/npapi/plugin.cpp &proxy, &length);
length 1152 plugin/npapi/plugin.cpp std::string nproxy (proxy, length);
length 294 utilities/rtmpget.cpp const double length = nc.length() * 1000.0;
length 308 utilities/rtmpget.cpp seektime, length, nc.playpath());
length 325 utilities/rtmpget.cpp amf::write(buf, length);