HomeSort by relevance Sort by last modified time
    Searched refs:rl (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_record.c 26 * @rl: Pointer to TLS record layer data
35 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
43 rl->cipher_suite = cipher_suite;
50 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_MD5;
51 rl->hash_size = MD5_MAC_LEN;
53 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_SHA1;
54 rl->hash_size = SHA1_MAC_LEN;
61 rl->key_material_len = data->key_material;
62 rl->iv_size = data->block_size;
63 rl->cipher_alg = data->alg
    [all...]
tlsv1_record.h 64 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
66 int tlsv1_record_change_write_cipher(struct tlsv1_record_layer *rl);
67 int tlsv1_record_change_read_cipher(struct tlsv1_record_layer *rl);
68 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
70 int tlsv1_record_receive(struct tlsv1_record_layer *rl,
tlsv1_client.c 83 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
84 conn->rl.iv_size);
97 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
98 pos += conn->rl.hash_size;
100 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
101 pos += conn->rl.hash_size;
104 os_memcpy(conn->rl.write_key, pos, conn->rl.key_material_len)
    [all...]
tlsv1_server.c 65 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
66 conn->rl.iv_size);
79 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
80 pos += conn->rl.hash_size;
82 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
83 pos += conn->rl.hash_size;
86 os_memcpy(conn->rl.read_key, pos, conn->rl.key_material_len)
    [all...]
tlsv1_server_write.c 144 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
167 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
228 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
257 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
263 if (!tls_server_key_exchange_allowed(conn->rl.cipher_suite)) {
422 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
490 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
532 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
561 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_CHANGE_CIPHER_SPEC,
569 if (tlsv1_record_change_write_cipher(&conn->rl) < 0)
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 26 * @rl: Pointer to TLS record layer data
35 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
43 rl->cipher_suite = cipher_suite;
50 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_MD5;
51 rl->hash_size = MD5_MAC_LEN;
53 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_SHA1;
54 rl->hash_size = SHA1_MAC_LEN;
61 rl->key_material_len = data->key_material;
62 rl->iv_size = data->block_size;
63 rl->cipher_alg = data->alg
    [all...]
tlsv1_record.h 64 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
66 int tlsv1_record_change_write_cipher(struct tlsv1_record_layer *rl);
67 int tlsv1_record_change_read_cipher(struct tlsv1_record_layer *rl);
68 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
70 int tlsv1_record_receive(struct tlsv1_record_layer *rl,
tlsv1_client.c 83 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
84 conn->rl.iv_size);
97 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
98 pos += conn->rl.hash_size;
100 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
101 pos += conn->rl.hash_size;
104 os_memcpy(conn->rl.write_key, pos, conn->rl.key_material_len)
    [all...]
tlsv1_server.c 65 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
66 conn->rl.iv_size);
79 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
80 pos += conn->rl.hash_size;
82 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
83 pos += conn->rl.hash_size;
86 os_memcpy(conn->rl.read_key, pos, conn->rl.key_material_len)
    [all...]
  /external/wpa_supplicant/
tlsv1_common.c 170 * @rl: Pointer to TLS record layer data
179 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
187 rl->cipher_suite = cipher_suite;
194 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_MD5;
195 rl->hash_size = MD5_MAC_LEN;
197 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_SHA1;
198 rl->hash_size = SHA1_MAC_LEN;
205 rl->key_material_len = data->key_material;
206 rl->iv_size = data->block_size;
207 rl->cipher_alg = data->alg
    [all...]
tlsv1_common.h 223 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
225 int tlsv1_record_change_write_cipher(struct tlsv1_record_layer *rl);
226 int tlsv1_record_change_read_cipher(struct tlsv1_record_layer *rl);
227 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
229 int tlsv1_record_receive(struct tlsv1_record_layer *rl,
tlsv1_client.c 40 struct tlsv1_record_layer rl; member in struct:tlsv1_client
234 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_HANDSHAKE,
359 if (tlsv1_record_set_cipher_suite(&conn->rl, cipher_suite) < 0) {
409 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
763 suite = tls_get_cipher_suite(conn->rl.cipher_suite);
939 if (tlsv1_record_change_read_cipher(&conn->rl) < 0) {
1103 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
1104 conn->rl.iv_size);
1117 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size)
    [all...]
  /external/clang/test/CodeGen/
arm-asm-variable.c 8 register uint32_t rl asm("r1");
16 : [_rl] "=&r" (rl), [_rh] "=&r" (rh) \
  /sdk/eclipse/scripts/
update_version.sh 30 grep -rl "$OLD" * | grep -E "\.xml$|\.MF$" | xargs -n 1 sed -i -e "s/$OLD/$NEW/g"
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
RangeManip.cpp 47 void RangeList::addRanges(const RangeList& rl) {
48 for(int i =0; i< rl.size();i++) {
49 addRange(rl.list[i]);
53 void RangeList::delRanges(const RangeList& rl,RangeList& deleted) {
54 for(int i =0; i< rl.size();i++) {
55 delRange(rl.list[i],deleted);
GLESpointer.cpp 107 void GLESpointer::getBufferConversions(const RangeList& rl,RangeList& rlOut) {
108 m_buffer->getConversions(rl,rlOut);
  /external/stlport/test/unit/
money_facets_test.cpp 52 void LocaleTest::_money_put_get( const locale& loc, const ref_monetary* rl )
54 _money_put_get2(loc, loc, rl);
59 const ref_monetary &rl = *prl; local
103 string::size_type p = strlen( rl.money_int_prefix );
106 string::size_type p_old = strlen( rl.money_int_prefix_old );
107 CPPUNIT_ASSERT( (str_res.substr(index, p) == rl.money_int_prefix) ||
109 (str_res.substr(index, p_old) == rl.money_int_prefix_old)) );
110 if ( str_res.substr(index, p) == rl.money_int_prefix ) {
135 CPPUNIT_ASSERT( str_res[index++] == /* intl_fmp.thousands_sep() */ *rl.money_thousands_sep );
141 CPPUNIT_ASSERT( str_res[index++] == /* intl_fmp.decimal_point() */ *rl.money_decimal_point )
281 const ref_monetary &rl = *prl; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
money_facets_test.cpp 52 void LocaleTest::_money_put_get( const locale& loc, const ref_monetary* rl )
54 _money_put_get2(loc, loc, rl);
59 const ref_monetary &rl = *prl; local
103 string::size_type p = strlen( rl.money_int_prefix );
106 string::size_type p_old = strlen( rl.money_int_prefix_old );
107 CPPUNIT_ASSERT( (str_res.substr(index, p) == rl.money_int_prefix) ||
109 (str_res.substr(index, p_old) == rl.money_int_prefix_old)) );
110 if ( str_res.substr(index, p) == rl.money_int_prefix ) {
135 CPPUNIT_ASSERT( str_res[index++] == /* intl_fmp.thousands_sep() */ *rl.money_thousands_sep );
141 CPPUNIT_ASSERT( str_res[index++] == /* intl_fmp.decimal_point() */ *rl.money_decimal_point )
281 const ref_monetary &rl = *prl; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
money_facets_test.cpp 52 void LocaleTest::_money_put_get( const locale& loc, const ref_monetary* rl )
54 _money_put_get2(loc, loc, rl);
59 const ref_monetary &rl = *prl; local
103 string::size_type p = strlen( rl.money_int_prefix );
106 string::size_type p_old = strlen( rl.money_int_prefix_old );
107 CPPUNIT_ASSERT( (str_res.substr(index, p) == rl.money_int_prefix) ||
109 (str_res.substr(index, p_old) == rl.money_int_prefix_old)) );
110 if ( str_res.substr(index, p) == rl.money_int_prefix ) {
135 CPPUNIT_ASSERT( str_res[index++] == /* intl_fmp.thousands_sep() */ *rl.money_thousands_sep );
141 CPPUNIT_ASSERT( str_res[index++] == /* intl_fmp.decimal_point() */ *rl.money_decimal_point )
281 const ref_monetary &rl = *prl; local
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
RangeManip.h 53 void addRanges(const RangeList& rl);
55 void delRanges(const RangeList& rl,RangeList& deleted);
GLESpointer.h 37 void getBufferConversions(const RangeList& rl,RangeList& rlOut);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RequestLineParser.java 89 RequestLine rl = rlp.parse(); local
90 System.out.println("encoded = " + rl.encode());
  /dalvik/vm/compiler/codegen/
Ralloc.h 105 extern void dvmCompilerResetDefLoc(CompilationUnit *cUnit, RegLocation rl);
115 extern void dvmCompilerMarkDef(CompilationUnit *cUnit, RegLocation rl,
122 extern void dvmCompilerMarkDefWide(CompilationUnit *cUnit, RegLocation rl,
155 extern void dvmCompilerResetDefLocWide(CompilationUnit *cUnit, RegLocation rl);
191 RegLocation rl);
RallocUtil.cpp 463 extern void dvmCompilerMarkDef(CompilationUnit *cUnit, RegLocation rl,
466 assert(!rl.wide);
469 RegisterInfo *p = getRegInfo(cUnit, rl.lowReg);
479 extern void dvmCompilerMarkDefWide(CompilationUnit *cUnit, RegLocation rl,
482 assert(rl.wide);
485 RegisterInfo *p = getRegInfo(cUnit, rl.lowReg);
486 dvmCompilerResetDef(cUnit, rl.highReg); // Only track low of pair
492 RegLocation rl)
494 assert(rl.wide);
495 if (rl.location == kLocPhysReg)
    [all...]
  /external/chromium/third_party/libevent/test/
bench.c 125 struct rlimit rl; local
152 rl.rlim_cur = rl.rlim_max = num_pipes * 2 + 50;
153 if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {

Completed in 713 milliseconds

1 2 3 4