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:Py_tss_t
(Results
1 - 7
of
7
) sorted by relevance
/third_party/python/Include/
H
A
D
pythread.h
111
typedef struct _Py_tss_t
Py_tss_t
; /* opaque */
typedef
113
PyAPI_FUNC(
Py_tss_t
*) PyThread_tss_alloc(void);
114
PyAPI_FUNC(void) PyThread_tss_free(
Py_tss_t
*key);
117
PyAPI_FUNC(int) PyThread_tss_is_created(
Py_tss_t
*key);
118
PyAPI_FUNC(int) PyThread_tss_create(
Py_tss_t
*key);
119
PyAPI_FUNC(void) PyThread_tss_delete(
Py_tss_t
*key);
120
PyAPI_FUNC(int) PyThread_tss_set(
Py_tss_t
*key, void *value);
121
PyAPI_FUNC(void *) PyThread_tss_get(
Py_tss_t
*key);
/third_party/python/Python/
H
A
D
thread.c
142
Py_tss_t
*
145
Py_tss_t
*new_key = (
Py_tss_t
*)PyMem_RawMalloc(sizeof(
Py_tss_t
));
in PyThread_tss_alloc()
154
PyThread_tss_free(
Py_tss_t
*key)
in PyThread_tss_free()
163
PyThread_tss_is_created(
Py_tss_t
*key)
in PyThread_tss_is_created()
H
A
D
thread_nt.h
462
PyThread_tss_create(
Py_tss_t
*key)
in PyThread_tss_create()
481
PyThread_tss_delete(
Py_tss_t
*key)
in PyThread_tss_delete()
495
PyThread_tss_set(
Py_tss_t
*key, void *value)
in PyThread_tss_set()
503
PyThread_tss_get(
Py_tss_t
*key)
in PyThread_tss_get()
H
A
D
thread_pthread.h
885
PyThread_tss_create(
Py_tss_t
*key)
in PyThread_tss_create()
902
PyThread_tss_delete(
Py_tss_t
*key)
in PyThread_tss_delete()
916
PyThread_tss_set(
Py_tss_t
*key, void *value)
in PyThread_tss_set()
924
PyThread_tss_get(
Py_tss_t
*key)
in PyThread_tss_get()
/third_party/python/Include/internal/
H
A
D
pycore_runtime.h
43
Py_tss_t
autoTSSkey;
/third_party/python/Modules/
H
A
D
_tracemalloc.c
158
static
Py_tss_t
tracemalloc_reentrant_key = Py_tss_NEEDS_INIT;
H
A
D
_testcapimodule.c
5460
Py_tss_t
tss_key = Py_tss_NEEDS_INIT;
in test_pythread_tss_key_state()
5496
Py_tss_t
*ptr_key = PyThread_tss_alloc();
in test_pythread_tss_key_state()
Completed in 15 milliseconds