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:AsyncCompileJob
(Results
1 - 4
of
4
) sorted by relevance
/third_party/node/deps/v8/src/wasm/
H
A
D
wasm-engine.h
46
class
AsyncCompileJob
;
237
std::unique_ptr<
AsyncCompileJob
> RemoveCompileJob(
AsyncCompileJob
* job);
239
// Returns true if at least one
AsyncCompileJob
that belongs to the given
372
AsyncCompileJob
* CreateAsyncCompileJob(
407
// We use an
AsyncCompileJob
as the key for itself so that we can delete the
409
std::unordered_map<
AsyncCompileJob
*, std::unique_ptr<
AsyncCompileJob
>>
H
A
D
module-compiler.cc
2001
AsyncCompileJob
::
AsyncCompileJob
(
in AsyncCompileJob()
function in v8::internal::wasm::__anon15175::AsyncCompileJob
2019
"wasm.
AsyncCompileJob
");
in AsyncCompileJob()
2033
void
AsyncCompileJob
::Start() {
in Start()
2038
void
AsyncCompileJob
::Abort() {
in Abort()
2046
explicit AsyncStreamingProcessor(
AsyncCompileJob
* job,
2080
// Finishes the
AsyncCompileJob
with an error.
2086
AsyncCompileJob
* job_;
2100
std::shared_ptr<StreamingDecoder>
AsyncCompileJob
::CreateStreamingDecoder() {
in CreateStreamingDecoder()
2108
AsyncCompileJob
[all...]
H
A
D
module-compiler.h
123
class
AsyncCompileJob
{
class
125
AsyncCompileJob
(Isolate* isolate, const WasmFeatures& enabled_features,
131
~
AsyncCompileJob
();
150
// States of the
AsyncCompileJob
.
241
// For async compilation the
AsyncCompileJob
is the only finisher. For
249
// The
AsyncCompileJob
owns the StreamingDecoder because the StreamingDecoder
250
// contains data which is needed by the
AsyncCompileJob
for streaming
251
// compilation. The
AsyncCompileJob
does not actively use the
H
A
D
wasm-engine.cc
677
AsyncCompileJob
* job = CreateAsyncCompileJob(
in AsyncCompile()
692
AsyncCompileJob
* job = CreateAsyncCompileJob(
in StartStreamingCompilation()
915
AsyncCompileJob
* WasmEngine::CreateAsyncCompileJob(
in CreateAsyncCompileJob()
921
AsyncCompileJob
* job = new
AsyncCompileJob
(
in CreateAsyncCompileJob()
926
async_compile_jobs_[job] = std::unique_ptr<
AsyncCompileJob
>(job);
in CreateAsyncCompileJob()
930
std::unique_ptr<
AsyncCompileJob
> WasmEngine::RemoveCompileJob(
in RemoveCompileJob()
931
AsyncCompileJob
* job) {
in RemoveCompileJob()
935
std::unique_ptr<
AsyncCompileJob
> result = std::move(item->second);
in RemoveCompileJob()
952
std::vector<std::unique_ptr<
AsyncCompileJob
>> jobs_to_delet
in DeleteCompileJobsOnContext()
[all...]
Completed in 9 milliseconds