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:_inittab
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Include/cpython/
H
A
D
import.h
24
struct
_inittab
{
struct
28
PyAPI_DATA(struct
_inittab
*) PyImport_Inittab;
29
PyAPI_FUNC(int) PyImport_ExtendInittab(struct
_inittab
*newtab);
/third_party/python/PC/
H
A
D
config_minimal.c
29
struct
_inittab
_PyImport_Inittab[] = {
H
A
D
config.c
84
struct
_inittab
_PyImport_Inittab[] = {
150
/* tools/freeze/makeconfig.py marker for additional "
_inittab
" entries */
/third_party/python/Python/
H
A
D
import.c
34
extern struct
_inittab
_PyImport_Inittab[];
36
struct
_inittab
*PyImport_Inittab = _PyImport_Inittab;
37
static struct
_inittab
*inittab_copy = NULL;
977
for (struct
_inittab
*p = PyImport_Inittab; p->name != NULL; p++) {
in create_builtin()
2578
PyImport_ExtendInittab(struct
_inittab
*newtab)
in PyImport_ExtendInittab()
2580
struct
_inittab
*p;
in PyImport_ExtendInittab()
2599
if (i + n <= SIZE_MAX / sizeof(struct
_inittab
) - 1) {
in PyImport_ExtendInittab()
2600
size_t size = sizeof(struct
_inittab
) * (i + n + 1);
in PyImport_ExtendInittab()
2611
memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct
_inittab
));
in PyImport_ExtendInittab()
2613
memcpy(p + i, newtab, (n + 1) * sizeof(struct
_inittab
));
in PyImport_ExtendInittab()
[all...]
Completed in 4 milliseconds