/external/scapy/scapy/layers/tls/ |
D | all.py | 10 from scapy.layers.tls.cert import * 12 from scapy.layers.tls.automaton_cli import * 13 from scapy.layers.tls.automaton_srv import * 14 from scapy.layers.tls.extensions import * 15 from scapy.layers.tls.handshake import * 16 from scapy.layers.tls.handshake_sslv2 import * 17 from scapy.layers.tls.keyexchange import * 18 from scapy.layers.tls.keyexchange_tls13 import * 19 from scapy.layers.tls.record import * 20 from scapy.layers.tls.record_sslv2 import * [all …]
|
/external/python/cffi/c/ |
D | misc_thread_common.h | 78 struct cffi_tls_s *tls; member 114 if (ob->tls != NULL) { in thread_canary_dealloc() 116 assert(ob->tls->local_thread_canary == ob); in thread_canary_dealloc() 117 ob->tls->local_thread_canary = NULL; in thread_canary_dealloc() 179 struct cffi_tls_s *tls; in thread_canary_register() local 185 tls = get_cffi_tls(); in thread_canary_register() 186 if (tls == NULL) in thread_canary_register() 200 canary->tls = tls; in thread_canary_register() 212 tls->local_thread_canary = canary; in thread_canary_register() 258 struct cffi_tls_s *tls = (struct cffi_tls_s *)p; in cffi_thread_shutdown() local [all …]
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | ConnectionSpec.java | 79 private final boolean tls; field in ConnectionSpec 85 this.tls = builder.tls; in ConnectionSpec() 92 return tls; in isTls() 175 if (!tls) { in isCompatible() 214 if (this.tls != that.tls) return false; in equals() 216 if (tls) { in equals() 227 if (tls) { in hashCode() 236 if (!tls) { in toString() 250 private boolean tls; field in ConnectionSpec.Builder 255 Builder(boolean tls) { in Builder() argument [all …]
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | ConnectionSpec.java | 81 private final boolean tls; field in ConnectionSpec 87 this.tls = builder.tls; in ConnectionSpec() 94 return tls; in isTls() 177 if (!tls) { in isCompatible() 216 if (this.tls != that.tls) return false; in equals() 218 if (tls) { in equals() 229 if (tls) { in hashCode() 238 if (!tls) { in toString() 255 private boolean tls; field in ConnectionSpec.Builder 260 Builder(boolean tls) { in Builder() argument [all …]
|
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/ |
D | ConnectionSpec.java | 73 final boolean tls; field in ConnectionSpec 87 this.tls = builder.tls; in ConnectionSpec() 94 return tls; in isTls() 189 if (!tls) { in isCompatible() 240 if (this.tls != that.tls) return false; in equals() 242 if (tls) { in equals() 253 if (tls) { in hashCode() 262 if (tls) { in toString() 275 private boolean tls; field in ConnectionSpec.Builder 280 public Builder(boolean tls) { in Builder() argument [all …]
|
/external/pdfium/third_party/libopenjpeg20/ |
D | thread.c | 514 static void opj_tls_destroy(opj_tls_t* tls) in opj_tls_destroy() argument 517 if (!tls) { in opj_tls_destroy() 520 for (i = 0; i < tls->key_val_count; i++) { in opj_tls_destroy() 521 if (tls->key_val[i].opj_free_func) { in opj_tls_destroy() 522 tls->key_val[i].opj_free_func(tls->key_val[i].value); in opj_tls_destroy() 525 opj_free(tls->key_val); in opj_tls_destroy() 526 opj_free(tls); in opj_tls_destroy() 529 void* opj_tls_get(opj_tls_t* tls, int key) in opj_tls_get() argument 532 for (i = 0; i < tls->key_val_count; i++) { in opj_tls_get() 533 if (tls->key_val[i].key == key) { in opj_tls_get() [all …]
|
/external/libcups/cups/ |
D | tls-boringssl.c | 292 return (SSL_pending(http->tls)); in _httpTLSPending() 305 return (SSL_read((SSL *)(http->tls), buf, len)); in _httpTLSRead() 362 http->tls = SSL_new(context); in _httpTLSStart() 363 SSL_set_bio(http->tls, bio, bio); in _httpTLSStart() 370 SSL_set_connect_state(http->tls); in _httpTLSStart() 391 SSL_set_tlsext_host_name(http->tls, hostname); in _httpTLSStart() 400 if (SSL_do_handshake(http->tls) != 1) in _httpTLSStart() 411 SSL_free(http->tls); in _httpTLSStart() 412 http->tls = NULL; in _httpTLSStart() 429 X509 *peer_certificate = SSL_get_peer_certificate(http->tls); in _httpTLSStart() [all …]
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | tls_pthread.h | 45 #define gpr_tls_init(tls) GPR_ASSERT(0 == pthread_key_create(&(tls)->key, NULL)) argument 46 #define gpr_tls_destroy(tls) pthread_key_delete((tls)->key) argument 47 #define gpr_tls_get(tls) ((intptr_t)pthread_getspecific((tls)->key)) argument 51 intptr_t gpr_tls_set(struct gpr_pthread_thread_local* tls, intptr_t value);
|
D | tls_gcc.h | 43 #define gpr_tls_init(tls) \ argument 46 #define gpr_tls_destroy(tls) \ argument 49 #define gpr_tls_set(tls, new_value) (((tls)->value) = (new_value)) argument 50 #define gpr_tls_get(tls) ((tls)->value) argument
|
D | tls_msvc.h | 43 #define gpr_tls_init(tls) \ argument 46 #define gpr_tls_destroy(tls) \ argument 49 #define gpr_tls_set(tls, new_value) (((tls)->value) = (new_value)) argument 50 #define gpr_tls_get(tls) ((tls)->value) argument
|
/external/llvm/lib/Support/Windows/ |
D | ThreadLocal.inc | 27 DWORD* tls = reinterpret_cast<DWORD*>(&data); 28 *tls = TlsAlloc(); 29 assert(*tls != TLS_OUT_OF_INDEXES); 33 DWORD* tls = reinterpret_cast<DWORD*>(&data); 34 TlsFree(*tls); 38 DWORD* tls = reinterpret_cast<DWORD*>(&data); 39 return TlsGetValue(*tls); 43 DWORD* tls = reinterpret_cast<DWORD*>(&data); 44 int errorcode = TlsSetValue(*tls, const_cast<void*>(d));
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/ |
D | ThreadLocal.inc | 26 DWORD* tls = reinterpret_cast<DWORD*>(&data); 27 *tls = TlsAlloc(); 28 assert(*tls != TLS_OUT_OF_INDEXES); 32 DWORD* tls = reinterpret_cast<DWORD*>(&data); 33 TlsFree(*tls); 37 DWORD* tls = reinterpret_cast<DWORD*>(&data); 38 return TlsGetValue(*tls); 42 DWORD* tls = reinterpret_cast<DWORD*>(&data); 43 int errorcode = TlsSetValue(*tls, const_cast<void*>(d));
|
/external/llvm/test/DebugInfo/PowerPC/ |
D | tls.ll | 6 ; 10 bytes of data in this DW_FORM_block1 representation of the location of 'tls' 10 ; The debug relocation of the address of the tls variable 11 ; CHECK: .quad tls@DTPREL+32768 15 @tls = thread_local global i32 7, align 4 21 !1 = !DIFile(filename: "tls.cpp", directory: "/tmp") 24 …!DIGlobalVariable(name: "tls", line: 1, isLocal: false, isDefinition: true, scope: null, file: !5,… 25 !5 = !DIFile(filename: "tls.cpp", directory: "/tmp")
|
D | tls-fission.ll | 7 ; 3 bytes of data in this DW_FORM_block1 representation of the location of 'tls' 18 ; CHECK-NEXT: .quad tls@DTPREL+32768 20 @tls = thread_local global i32 0, align 4 25 …, producer: "clang version 3.4 ", isOptimized: false, splitDebugFilename: "tls.dwo", emissionKind:… 26 !1 = !DIFile(filename: "tls.cpp", directory: "/tmp") 29 …!DIGlobalVariable(name: "tls", line: 1, isLocal: false, isDefinition: true, scope: null, file: !5,… 30 !5 = !DIFile(filename: "tls.cpp", directory: "/tmp")
|
/external/libgsm/ |
D | MANIFEST | 45 gsm-1.0/tls/bitter.c 46 gsm-1.0/tls/bitter.dta 47 gsm-1.0/tls/taste.c 48 gsm-1.0/tls/taste.h 49 gsm-1.0/tls/sweet.c 50 gsm-1.0/tls/sour.c 51 gsm-1.0/tls/sour1.dta 52 gsm-1.0/tls/sour2.dta 53 gsm-1.0/tls/ginger.c
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/PowerPC/ |
D | ppc64-tls-relocs-01.s | 9 lwzx 4, 3, t@tls 10 lhzx 4, 3, t@tls 11 lbzx 4, 3, t@tls 12 ldx 4, 3, t@tls 13 stbx 4, 3, t@tls 14 sthx 4, 3, t@tls 15 stwx 4, 3, t@tls 16 stdx 4, 3, t@tls
|
/external/grpc-grpc/tools/http2_interop/ |
D | http2interop.go | 267 tls.TLS_RSA_WITH_RC4_128_SHA, 268 tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA, 269 tls.TLS_RSA_WITH_AES_128_CBC_SHA, 270 tls.TLS_RSA_WITH_AES_256_CBC_SHA, 271 tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, 272 tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, 273 tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, 274 tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA, 275 tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, 276 tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | tls-pie-xform.ll | 14 ; CHECK-NEXT: lbzx 3, 3, var_char@tls 25 ; CHECK-NEXT: stbx 3, 4, var_char@tls 37 ; CHECK-NEXT: lbzx 5, 4, var_char@tls 38 ; CHECK: stbx {{[0-9]+}}, 4, var_char@tls 51 ; CHECK-NEXT: lhzx 3, 3, var_short@tls 62 ; CHECK-NEXT: sthx 3, 4, var_short@tls 74 ; CHECK-NEXT: lhzx 5, 4, var_short@tls 75 ; CHECK: sthx {{[0-9]+}}, 4, var_short@tls 88 ; CHECK-NEXT: lwzx 3, 3, var_int@tls 99 ; CHECK-NEXT: stwx 3, 4, var_int@tls [all …]
|
/external/ltp/lib/ |
D | cloner.c | 50 pid_t *parent_tid, void *tls, pid_t *child_tid); 54 # define clone(fn, stack, flags, arg, ptid, tls, ctid) \ argument 66 size_t stack_size, void *stack, pid_t *ptid, void *tls, pid_t *ctid) in ltp_clone_() argument 71 ret = __clone2(fn, stack, stack_size, flags, arg, ptid, tls, ctid); in ltp_clone_() 87 ret = clone(fn, stack, flags, arg, ptid, tls, ctid); in ltp_clone_() 103 void *tls; in ltp_clone7() local 108 tls = va_arg(arg_clone, void *); in ltp_clone7() 113 return ltp_clone_(flags, fn, arg, stack_size, stack, ptid, tls, ctid); in ltp_clone7()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/WebAssembly/ |
D | tls.ll | 7 ; SINGLE: i32.const $push0=, tls 9 ret i32 ptrtoint(i32* @tls to i32) 12 ; SINGLE: .type tls,@object 13 ; SINGLE-NEXT: .section .bss.tls,"",@ 15 ; SINGLE-NEXT: tls: 17 @tls = internal thread_local global i32 0
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PowerPC/ |
D | tls.ll | 6 ; 10 bytes of data in this DW_FORM_block1 representation of the location of 'tls' 10 ; The debug relocation of the address of the tls variable 11 ; CHECK: .quad tls@DTPREL+32768 15 source_filename = "test/DebugInfo/PowerPC/tls.ll" 17 @tls = thread_local global i32 7, align 4, !dbg !0 23 !1 = !DIGlobalVariable(name: "tls", scope: null, file: !2, line: 1, type: !3, isLocal: false, isDef… 24 !2 = !DIFile(filename: "tls.cpp", directory: "/tmp")
|
D | tls-fission.ll | 7 ; 3 bytes of data in this DW_FORM_block1 representation of the location of 'tls' 17 ; CHECK-NEXT: .quad tls@DTPREL+32768 19 source_filename = "test/DebugInfo/PowerPC/tls-fission.ll" 21 @tls = thread_local global i32 0, align 4, !dbg !0 27 !1 = !DIGlobalVariable(name: "tls", scope: null, file: !2, line: 1, type: !3, isLocal: false, isDef… 28 !2 = !DIFile(filename: "tls.cpp", directory: "/tmp") 30 …version 3.4 ", isOptimized: false, runtimeVersion: 0, splitDebugFilename: "tls.dwo", emissionKind:…
|
/external/llvm/test/DebugInfo/X86/ |
D | tls.ll | 19 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-linux-gnu -emulated-tls \ 23 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=i386-linux-gnu -emulated-tls \ 27 ; TODO: Add expected output for -emulated-tls tests. 33 ; 3 bytes of data in this DW_FORM_block1 representation of the location of 'tls' 43 ; 10 bytes of data in this DW_FORM_block1 representation of the location of 'tls' 47 ; SINGLE-64-NEXT: .quad tls@DTPOFF 58 ; SINGLE-32-NEXT: .long tls@DTPOFF 82 ; FISSION-NEXT: .quad tls@DTPOFF 88 ; __thread int tls; 99 @tls = thread_local global i32 0, align 4 [all …]
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | tls.c | 98 FIXTURE(tls) in FIXTURE() argument 104 FIXTURE_SETUP(tls) in FIXTURE_SETUP() argument 164 FIXTURE_TEARDOWN(tls) in FIXTURE_TEARDOWN() argument 170 TEST_F(tls, sendfile) in TEST_F() argument 180 TEST_F(tls, send_then_sendfile) in TEST_F() argument 201 TEST_F(tls, recv_max) in TEST_F() argument 212 TEST_F(tls, recv_small) in TEST_F() argument 224 TEST_F(tls, msg_more) in TEST_F() argument 238 TEST_F(tls, msg_more_unsent) in TEST_F() argument 248 TEST_F(tls, sendmsg_single) in TEST_F() argument [all …]
|
/external/cpuinfo/test/cpuinfo/ |
D | huawei-mate-8.armeabi.log | 4 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 13 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 22 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 31 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 40 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 49 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 58 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha… 67 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt lpae evtstrm aes pmull sha…
|