Home
last modified time | relevance | path

Searched refs:orig_len (Results 1 – 19 of 19) sorted by relevance

/external/dbus/dbus/
Ddbus-sysdeps.c357 int orig_len; in _dbus_string_append_int() local
361 orig_len = _dbus_string_get_length (str); in _dbus_string_append_int()
366 buf = _dbus_string_get_data_len (str, orig_len, MAX_LONG_LEN); in _dbus_string_append_int()
395 int orig_len; in _dbus_string_append_uint() local
399 orig_len = _dbus_string_get_length (str); in _dbus_string_append_uint()
404 buf = _dbus_string_get_data_len (str, orig_len, MAX_ULONG_LEN); in _dbus_string_append_uint()
Ddbus-transport.c991 int orig_len; in recover_unused_bytes() local
1009 orig_len = _dbus_string_get_length (buffer); in recover_unused_bytes()
1012 orig_len)) in recover_unused_bytes()
1020 orig_len); in recover_unused_bytes()
1025 orig_len); in recover_unused_bytes()
1035 int orig_len; in recover_unused_bytes() local
1041 orig_len = _dbus_string_get_length (buffer); in recover_unused_bytes()
1052 orig_len); in recover_unused_bytes()
1057 orig_len); in recover_unused_bytes()
Ddbus-file-unix.c61 int orig_len; in _dbus_file_get_contents() local
107 orig_len = _dbus_string_get_length (str); in _dbus_file_get_contents()
127 _dbus_string_set_length (str, orig_len); in _dbus_file_get_contents()
Ddbus-file-win.c114 int orig_len; in _dbus_file_get_contents() local
163 orig_len = _dbus_string_get_length (str); in _dbus_file_get_contents()
183 _dbus_string_set_length (str, orig_len); in _dbus_file_get_contents()
Ddbus-marshal-basic.c661 int orig_len; in marshal_2_octets() local
668 orig_len = _dbus_string_get_length (str); in marshal_2_octets()
675 *pos_after = insert_at + (_dbus_string_get_length (str) - orig_len); in marshal_2_octets()
690 int orig_len; in marshal_4_octets() local
697 orig_len = _dbus_string_get_length (str); in marshal_4_octets()
704 *pos_after = insert_at + (_dbus_string_get_length (str) - orig_len); in marshal_4_octets()
719 int orig_len; in marshal_8_octets() local
725 orig_len = _dbus_string_get_length (str); in marshal_8_octets()
731 *pos_after = insert_at + _dbus_string_get_length (str) - orig_len; in marshal_8_octets()
Ddbus-address.c110 int orig_len; in _dbus_address_append_escaped() local
114 orig_len = _dbus_string_get_length (escaped); in _dbus_address_append_escaped()
139 _dbus_string_set_length (escaped, orig_len); in _dbus_address_append_escaped()
Ddbus-transport-socket.c751 int orig_len; in do_reading() local
756 orig_len = _dbus_string_get_length (buffer); in do_reading()
765 _dbus_string_get_length (buffer) - orig_len); in do_reading()
773 _dbus_string_get_length (buffer) - orig_len); in do_reading()
Ddbus-marshal-recursive-util.c2999 int orig_len; in struct_build_signature() local
3004 orig_len = _dbus_string_get_length (str); in struct_build_signature()
3035 _dbus_string_set_length (str, orig_len); in struct_build_signature()
3212 int orig_len; in array_build_signature() local
3214 orig_len = _dbus_string_get_length (str); in array_build_signature()
3226 _dbus_string_set_length (str, orig_len); in array_build_signature()
3531 int orig_len; in dict_build_signature() local
3533 orig_len = _dbus_string_get_length (str); in dict_build_signature()
3551 _dbus_string_set_length (str, orig_len); in dict_build_signature()
Ddbus-marshal-recursive.c1168 int orig_len; in replacement_block_replace() local
1172 orig_len = _dbus_string_get_length (&block->replacement); in replacement_block_replace()
1232 _dbus_string_set_length (&block->replacement, orig_len); in replacement_block_replace()
Ddbus-auth.c1505 int orig_len; in send_ok() local
1507 orig_len = _dbus_string_get_length (&auth->outgoing); in send_ok()
1521 _dbus_string_set_length (&auth->outgoing, orig_len); in send_ok()
Ddbus-sysdeps-unix.c3265 int orig_len; in _read_subprocess_line_argv() local
3281 orig_len = _dbus_string_get_length (result); in _read_subprocess_line_argv()
3405 _dbus_string_set_length (result, orig_len); in _read_subprocess_line_argv()
/external/boringssl/src/crypto/cipher/
Dtls_cbc.c134 unsigned orig_len) { in EVP_tls_cbc_copy_mac() argument
152 assert(orig_len >= in_len); in EVP_tls_cbc_copy_mac()
161 if (orig_len > md_size + 255 + 1) { in EVP_tls_cbc_copy_mac()
162 scan_start = orig_len - (md_size + 255 + 1); in EVP_tls_cbc_copy_mac()
176 for (i = scan_start, j = 0; i < orig_len; i++) { in EVP_tls_cbc_copy_mac()
Dinternal.h129 unsigned orig_len);
/external/clang/test/Analysis/
Dstring.c378 size_t orig_len = strlen(x); in strcat_effects() local
385 clang_analyzer_eval((int)strlen(x) == (orig_len + strlen(y))); // expected-warning{{TRUE}} in strcat_effects()
567 size_t orig_len = strlen(x); in strncat_effects() local
574 clang_analyzer_eval(strlen(x) == (orig_len + strlen(y))); // expected-warning{{TRUE}} in strncat_effects()
/external/ppp/pppd/include/net/
Dppp-comp.h72 PACKETPTR mp, int orig_len, int max_len));
/external/webrtc/webrtc/test/
Drtp_file_reader.cc436 uint32_t orig_len; // Actual length of packet. in ReadPacket() local
440 TRY_PCAP(Read(&orig_len, false)); in ReadPacket()
/external/dbus/bus/
Dsignals.c559 int orig_len; in find_value() local
563 orig_len = _dbus_string_get_length (value); in find_value()
669 _dbus_string_set_length (value, orig_len); in find_value()
/external/boringssl/src/ssl/
Dt1_lib.c1301 const size_t orig_len = CBS_len(contents); in ext_npn_parse_serverhello() local
1314 ssl, &selected, &selected_len, orig_contents, orig_len, in ext_npn_parse_serverhello()
/external/harfbuzz_ng/src/
Dhb-ot-layout-gsubgpos-private.hh987 unsigned int orig_len = buffer->backtrack_len () + buffer->lookahead_len (); in apply_lookup() local
992 int delta = new_len - orig_len; in apply_lookup()