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:context
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ssl_stream/
H
A
D
wrapper.rs
25
pub(crate)
context
: *mut (),
32
/// Must be called with `
context
` set to a valid pointer to a live `Context`
35
debug_assert!(!self.
context
.is_null());
in inner()
37
let
context
= &mut *(self.
context
as *mut _);
38
(stream,
context
)
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/
H
A
D
driver_handle.rs
54
let
context
= get_current_handle()
56
Ok(
context
._handle.clone())
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/task/
H
A
D
task_handle.rs
187
let mut
context
= Context::from_waker(&waker);
variables
190
self.inner().poll(&mut
context
).map(Ok)
289
let mut
context
= Context::from_waker(&waker);
variables
292
self.inner().poll(&mut
context
).map(Ok)
H
A
D
raw.rs
247
pub(crate) fn poll(&self,
context
: &mut Context) -> Poll<T::Output> {
255
let res = future.poll(
context
);
/commonlibrary/rust/ylong_http/ylong_http_client/tests/common/
H
A
D
mod.rs
200
let ssl = openssl::ssl::Ssl::new(acceptor.
context
()).expect("Ssl Error");
Completed in 3 milliseconds