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:unsync
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/once_cell/src/
H
A
D
imp_cs.rs
6
use crate::
unsync
;
10
// Use `
unsync
::OnceCell` internally since `Mutex` does not provide
12
value: Mutex<
unsync
::OnceCell<T>>,
28
OnceCell { initialized: AtomicBool::new(false), value: Mutex::new(
unsync
::OnceCell::new()) }
34
value: Mutex::new(
unsync
::OnceCell::with_value(value)),
H
A
D
lib.rs
3
//! `once_cell` provides two new cell-like types, [`
unsync
::OnceCell`] and [`sync::OnceCell`]. A `OnceCell`
19
//! The `sync` flavor is thread-safe (that is, implements the [`Sync`] trait), while the `
unsync
` one is not.
21
//! [`
unsync
::OnceCell`]:
unsync
/struct.OnceCell.html
82
//! There are also the [`sync::Lazy`] and [`
unsync
::Lazy`] convenience types to streamline this pattern:
104
//! [`
unsync
::Lazy`]:
unsync
/struct.Lazy.html
111
//! use once_cell::
unsync
::Lazy;
128
//! use once_cell::
unsync
::OnceCell;
257
//! |`
unsync
354
pub mod
unsync
{
global()
modules
[all...]
/third_party/ffmpeg/libavformat/
H
A
D
id3v2.c
891
int isv34,
unsync
;
in id3v2_parse()
local
935
unsync
= flags & 0x80;
in id3v2_parse()
1043
if (
unsync
|| tunsync || tcomp) {
in id3v2_parse()
1050
if (
unsync
|| tunsync) {
in id3v2_parse()
1089
if (!(
unsync
|| tunsync)) {
in id3v2_parse()
/third_party/rust/crates/once_cell/tests/
H
A
D
it.rs
1
mod
unsync
{
modules
7
use once_cell::
unsync
::{Lazy, OnceCell};
Completed in 4 milliseconds