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:from_raw
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/rust/kernel/
H
A
D
types.rs
69
unsafe { Box::
from_raw
(ptr as _) }
in from_foreign()
339
pub unsafe fn
from_raw
(ptr: NonNull<T>) -> Self {
in from_raw()
functions
353
unsafe { Self::
from_raw
(self.ptr) }
in clone()
370
unsafe { Self::
from_raw
(NonNull::from(b)) }
in from()
/kernel/linux/linux-6.6/rust/kernel/sync/
H
A
D
arc.rs
305
unsafe { drop(Box::
from_raw
(self.ptr.as_ptr())) };
in drop()
/kernel/linux/linux-6.6/rust/alloc/
H
A
D
boxed.rs
63
//! [`Box::<T>::
from_raw
(value)`]. Conversely, the memory backing a `value: *mut
143
//! [`Box::<T>::
from_raw
(value)`]: Box::
from_raw
933
/// let x = unsafe { Box::
from_raw
(ptr) };
945
/// let x = Box::
from_raw
(ptr);
953
#[must_use = "call `drop(Box::
from_raw
(ptr))` if you intend to drop the `Box`"]
954
pub unsafe fn
from_raw
(raw: *mut T) -> Self {
in from_raw()
functions
1023
/// [`Box::
from_raw
`] function, allowing the `Box` destructor to perform
1031
/// Converting the raw pointer back into a `Box` with [`Box::
from_raw
`]
1036
/// let x = unsafe { Box::
from_raw
(pt
[all...]
Completed in 4 milliseconds