Home
last modified time | relevance | path

Searched refs:processed (Results 1 – 25 of 247) sorted by relevance

12345678910

/ohos5.0/base/telephony/ril_adapter/services/vendor/src/
H A Dvendor_channel.c55 static void ClearCurBuffer(char **processed) in ClearCurBuffer() argument
57 if (processed == NULL) { in ClearCurBuffer()
62 *processed = g_bufferCur; in ClearCurBuffer()
67 if (processed == NULL) { in ProcessLastResponse()
72 ClearCurBuffer(processed); in ProcessLastResponse()
81 *processed = g_buffer + len; in ProcessLastResponse()
91 char *processed = NULL; in ReadResponse() local
98 ClearCurBuffer(&processed); in ReadResponse()
101 size = read(atFd, processed, (MAX_RESPONSE_LEN - (processed - &g_buffer[0]))); in ReadResponse()
104 processed[size] = '\0'; in ReadResponse()
[all …]
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/distributed_file_daemon/
H A Dtrans_mananger_test.cpp145 uint64_t processed = 0;; variable
146 transManager_->NotifyFileProgress(sessionName, total, processed);
156 uint64_t processed = 0;; variable
157 TransManager::GetInstance().NotifyFileProgress(sessionName, total, processed);
/ohos5.0/base/request/request/services/src/task/
H A Dffi.rs108 pub(crate) processed: CStringWrapper,
113 pub(crate) fn to_c_struct(&self, sizes: &str, processed: &str, extras: &str) -> CProgress { in to_c_struct()
117 processed: CStringWrapper::from(processed), in to_c_struct()
128 processed: split_string(&mut c_struct.processed.to_string()) in from_c_struct()
171 .to_c_struct(&info.sizes, &info.processed, &info.extras), in to_c_struct()
245 processed: &str, in to_c_struct()
254 progress: self.progress.to_c_struct(sizes, processed, extras), in to_c_struct()
H A Dnotify.rs55 pub(crate) processed: Vec<usize>,
77 processed: vec![0; len], in new()
84 && self.processed.iter().sum::<usize>() == self.sizes.iter().sum::<i64>() as usize in is_finish()
H A Dupload.rs64 if self.task.conf.common_data.index == index as u32 || progress_guard.processed[index] != 0 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()
100 progress_guard.processed[index] += upload_size; in poll_read()
158 upload_length = progress.sizes[index] as u64 - progress.processed[index] as u64; in build_stream_request()
193 upload_length = progress.sizes[index] as u64 - progress.processed[index] as u64; in build_multipart_request()
250 progress.processed[index] = 0; in prepare_single_upload()
256 let processed = self.progress.lock().unwrap().processed[index] as u64; in prepare_single_upload() localVariable
263 file.seek(SeekFrom::Start(self.conf.common_data.begins + processed)) in prepare_single_upload()
266 file.seek(SeekFrom::Start(processed)).await in prepare_single_upload()
[all …]
H A Dinfo.rs81 pub(crate) processed: String,
148 processed: format!("{:?}", self.progress.processed), in build_info_set()
H A Ddownload.rs106 progress.processed = vec![downloaded]; in prepare_download()
230 guard.sizes = vec![guard.processed[0] as i64]; in download_inner()
561 progress.processed = vec![]; in ut_download_invalid_task()
579 task.progress.lock().unwrap().processed[0] as u64 in ut_download_invalid_task()
608 progress.processed = vec![]; in ut_download_sizes()
/ohos5.0/base/request/request/services/include/
H A Dc_progress.h33 CStringWrapper processed; member
40 std::string processed; member
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/ipc/
H A Dtrans_mananger.cpp29 …ransManager::NotifyFileProgress(const std::string &sessionName, uint64_t total, uint64_t processed) in NotifyFileProgress() argument
41 iter->second->OnFileReceive(total, processed); in NotifyFileProgress()
/ohos5.0/docs/en/application-dev/internationalization/
H A Di18n-character-processing.md58 …ever, it does not guaranteed that polyphonic characters are effectively processed based on the con…
150 3. Set the text to be processed.
152 iterator.setLineBreakText(text: string); // Set the text to be processed.
153 …let breakText: string = iterator.getLineBreakText(); // View the text being processed by the Break…
173 // Set the text to be processed.
185 // Obtain the text processed by BreakIterator.
/ohos5.0/base/request/request/services/src/manage/
H A Dnotifier.rs246 data.progress.processed[0], in ut_notify_progress()
291 data.progress.processed[0], in ut_notify_pause_resume()
304 data.progress.processed[0], in ut_notify_pause_resume()
341 data.progress.processed[0], in ut_notify_remove()
379 data.progress.processed[0], in ut_notify_completed()
417 data.progress.processed[0], in ut_notify_failed()
H A Ddatabase.rs276 let processed = format!("{:?}", update_info.progress.processed); in update_task() localVariable
283 let c_update_info = update_info.to_c_struct(&sizes, &processed, &extras, &each_file_status); in update_task()
310 …update_info.progress.sizes, update_info.progress.processed, hashmap_to_string(&update_info.progres… in update_task()
/ohos5.0/base/request/request/frameworks/cj/ffi/src/
H A Dcj_request_common.cpp121 out.processed = in.processed; in Convert2CProgress()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_telemetry.cpp208 size_t processed = 0u; in GetCpuTime() local
211 if (!IsCpuLine(args) || (processed == infos.size())) { in GetCpuTime()
221 processed++; in GetCpuTime()
/ohos5.0/docs/en/application-dev/reference/apis-performance-analysis-kit/
H A D_hi_hicollie.md35 …to the user-defined callback. This callback is used after the service thread processed the event.|
89 …he jank event detection. This callback is used after the service thread processed the event to che…
160 | endFunc | Callback used after the service thread processed the event. If you want to cancel the d…
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/ipc/
H A Dtrans_mananger.h33 void NotifyFileProgress(const std::string &sessionName, uint64_t total, uint64_t processed);
/ohos5.0/base/request/request/test/unittest/cpp_test/fwkTest/src/
H A Dresponse_message_receiver_test.cpp564 uint64_t processed = 123456; // 123456 is except processed variable
589 …(memcpy_s(except + pos, static_cast<size_t>(ARRAY_LEN - pos), reinterpret_cast<void *>(&processed),
590 sizeof(processed)),
592 pos += sizeof(processed);
680 EXPECT_EQ(notifyData->progress.processed, processed);
/ohos5.0/docs/en/application-dev/reference/apis-media-library-kit/
H A D_media_library___request_options.md6 Defines how media assets are requested and processed.
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A Derrorcode-pasteboard.md94 The data to be processed is large and consumes too much time.
98 If the data to be processed is too large, consider using an asynchronous API.
/ohos5.0/docs/en/device-dev/security/
H A Dsecurity-privacy-protection.md96 …lected for specified, explicit, and legitimate purposes and not further processed in a manner that…
118processed. Apply anonymization or pseudonymization to personal data if possible to reduce the risk…
158processed on the local device. Data that cannot be processed on the local device shall be preferen…
173 …nvolved in security products are sensitive personal data. They shall be processed using technical …
/ohos5.0/base/notification/eventhandler/frameworks/cj/src/
H A Demitter.h34 std::atomic<bool> processed = false; member
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_backup_extension/include/
H A Dbackup_const.h433 uint64_t processed {0};
435 SubProcessInfo(uint64_t processed, uint64_t total) : processed(processed), total(total) {} in SubProcessInfo()
/ohos5.0/docs/en/application-dev/reference/apis-camera-kit/
H A Djs-apis-camera.md443 // If the operation fails, error.code is returned and processed.
496 // If the operation fails, error.code is returned and processed.
545 // If the operation fails, error.code is returned and processed.
592 // If the operation fails, error.code is returned and processed.
642 // If the operation fails, error.code is returned and processed.
690 // If the operation fails, error.code is returned and processed.
739 // If the operation fails, error.code is returned and processed.
786 // If the operation fails, error.code is returned and processed.
834 // If the operation fails, error.code is returned and processed.
877 // If the operation fails, error.code is returned and processed.
[all …]
/ohos5.0/docs/zh-cn/application-dev/reference/apis-core-file-kit/
H A Djs-apis-application-backupExtensionAbility.md252 processed: number, // 已处理的数据
292 "processed": 100, // 已处理的数据
/ohos5.0/docs/en/application-dev/media/camera/
H A Dcamera-moving-photo.md62 // If the operation fails, error.code is returned and processed.
77 // If the operation fails, error.code is returned and processed.

12345678910