Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:_tls
(Results
1 - 4
of
4
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/
H
A
D
thread.h
63
} name##
_tls
= { \
68
name##
_tls
.tls = pa_tls_new(free_cb); \
71
pa_run_once(&name##
_tls
.once, name##_tls_init); \
72
return name##
_tls
.tls; \
79
if (!name##
_tls
.tls) \
83
if ((p = pa_tls_get(name##
_tls
.tls))) \
86
pa_tls_free(name##
_tls
.tls); \
100
static __thread void *name##
_tls
= NULL; \
102
return name##
_tls
; \
105
void *r = name##
_tls
; \
[all...]
/third_party/python/Lib/multiprocessing/
H
A
D
context.py
363
_tls
= threading.local()
variable
366
return getattr(
_tls
, 'spawning_popen', None)
369
_tls
.spawning_popen = popen
H
A
D
managers.py
767
# self.
_tls
is used to record the connection used by this
769
self.
_tls
= tls_idset[0]
807
self.
_tls
.connection = conn
814
conn = self.
_tls
.connection
819
conn = self.
_tls
.connection
861
self.
_tls
, self._idset, self._Client),
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
H
A
D
mod.rs
1354
server_ctx.set_stateless_cookie_generate_cb(|
_tls
, buf| {
1358
server_ctx.set_stateless_cookie_verify_cb(|
_tls
, buf| buf == COOKIE);
Completed in 6 milliseconds