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:try_new
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-6.6/samples/rust/
H
A
D
rust_print.rs
21
let a = Arc::
try_new
(1)?;
in arc_print()
22
let b = UniqueArc::
try_new
("hello, world")?;
in arc_print()
/kernel/linux/linux-6.6/rust/kernel/sync/
H
A
D
arc.rs
60
/// let obj = Arc::
try_new
(Example { a: 10, b: 20 })?;
99
/// let obj = Arc::
try_new
(Example { a: 10, b: 20 })?;
122
/// let obj: Arc<Example> = Arc::
try_new
(Example)?;
165
pub fn
try_new
(contents: T) -> Result<Self, AllocError> {
in try_new()
functions
173
let inner = Box::
try_new
(value)?;
in try_new()
350
/// let obj = Arc::
try_new
(Example)?;
374
/// let obj = Arc::
try_new
(Example { a: 10, b: 20 })?;
462
/// let mut x = UniqueArc::
try_new
(Example { a: 10, b: 20 })?;
505
/// let mut pinned = Pin::from(UniqueArc::
try_new
(Example { a: 10, b: 20 })?);
519
pub fn
try_new
(valu
functions
[all...]
/kernel/linux/linux-5.10/drivers/net/wimax/i2400m/
H
A
D
tx.c
405
* goto
try_new
;
738
try_new
:
in i2400m_tx()
773
goto
try_new
;
in i2400m_tx()
/kernel/linux/linux-6.6/rust/alloc/
H
A
D
boxed.rs
301
/// let five = Box::
try_new
(5)?;
306
pub fn
try_new
(x: T) -> Result<Self, AllocError> {
in try_new()
functions
Completed in 5 milliseconds