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:tasks
(Results
1 - 6
of
6
) sorted by relevance
/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
H
A
D
semaphore_test.rs
104
let mut
tasks
: Vec<JoinHandle<()>> = Vec::new();
in sdv_auto_release_sem_stress_test()
variables
108
tasks
.push(ylong_runtime::spawn(async move {
in sdv_auto_release_sem_stress_test()
112
for t in
tasks
{
in sdv_auto_release_sem_stress_test()
138
let mut
tasks
: Vec<JoinHandle<()>> = Vec::new();
in sdv_async_stress_test()
variables
143
tasks
.push(ylong_runtime::spawn(async move {
in sdv_async_stress_test()
146
tasks
.push(ylong_runtime::spawn(async move {
in sdv_async_stress_test()
150
for t in
tasks
{
in sdv_async_stress_test()
H
A
D
mpsc_test.rs
277
let mut
tasks
: Vec<JoinHandle<()>> = Vec::new();
in sdv_multi_send_recv_test()
variables
280
tasks
.push(ylong_runtime::spawn(async move {
in sdv_multi_send_recv_test()
291
for t in
tasks
{
in sdv_multi_send_recv_test()
297
let mut
tasks
: Vec<JoinHandle<()>> = Vec::new();
in sdv_multi_send_recv_test()
variables
300
tasks
.push(ylong_runtime::spawn(async move {
in sdv_multi_send_recv_test()
311
for t in
tasks
{
in sdv_multi_send_recv_test()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/time/
H
A
D
wheel.rs
34
// Struct for timing and waking up corresponding
tasks
on the timing wheel.
486
let mut
tasks
: Vec<JoinHandle<()>> = Vec::new();
in ut_sleep_drop()
variables
488
tasks
.push(crate::spawn(udp_sender(rx)));
in ut_sleep_drop()
489
tasks
.push(crate::spawn(udp_receiver(tx)));
in ut_sleep_drop()
490
for t in
tasks
{
in ut_sleep_drop()
/commonlibrary/c_utils/base/include/
H
A
D
io_event_reactor.h
92
void Execute(const std::vector<EventCallback>&
tasks
);
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/
H
A
D
queue.rs
302
// get the number of
tasks
the worker has stolen
351
// get the number of
tasks
the worker has stolen
363
// steal half of the
tasks
from the queue
382
// transfer the
tasks
426
/// Current number of
tasks
428
/// The total number of
tasks
which has entered global queue.
457
pub(super) fn push_batch(&self,
tasks
: Vec<UnsafeCell<MaybeUninit<Task>>>, task: Task) {
459
let len =
tasks
.len() + 1;
460
for task_ptr in
tasks
{
675
/// 2. Insert
tasks
u
[all...]
/commonlibrary/c_utils/base/src/
H
A
D
io_event_reactor.cpp
226
void IOEventReactor::Execute(const std::vector<EventCallback>&
tasks
)
in Execute()
argument
228
for (const EventCallback& cb :
tasks
) {
in Execute()
Completed in 4 milliseconds