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:progress_guard
(Results
1 - 2
of
2
) sorted by relevance
/base/request/request/services/src/task/
H
A
D
upload.rs
62
let mut
progress_guard
= self.task.progress.lock().unwrap();
in poll_read()
variables
64
if self.task.conf.common_data.index == index as u32 ||
progress_guard
.processed[index] != 0
in poll_read()
67
progress_guard
.sizes[index] as usize - uploaded
in poll_read()
69
progress_guard
.sizes[index] as usize -
progress_guard
.processed[index]
in poll_read()
81
progress_guard
.processed[index] += upload_size;
in poll_read()
82
progress_guard
.common_data.total_processed += upload_size;
in poll_read()
85
drop(
progress_guard
);
in poll_read()
100
progress_guard
.processed[index] += upload_size;
in poll_read()
101
progress_guard
in poll_read()
[all...]
H
A
D
request_task.rs
322
let mut
progress_guard
= self.progress.lock().unwrap();
variables
323
progress_guard
.common_data.total_processed = 0;
324
progress_guard
.processed[0] = 0;
393
let
progress_guard
= self.progress.lock().unwrap();
in support_range()
395
if let Some(etag) =
progress_guard
.extras.get("etag") {
in support_range()
398
} else if let Some(last_modified) =
progress_guard
.extras.get("last-modified") {
in support_range()
Completed in 3 milliseconds