Searched refs:task (Results 1 - 24 of 24) sorted by relevance

/system/bt/bta/include/
H A Dbta_closure_api.h34 const base::Closure& task);
/system/tpm/trunks/
H A Dbackground_command_transceiver.cc42 base::Closure task = base::Bind(callback, response); local
43 task_runner->PostTask(FROM_HERE, task);
68 base::Closure task = local
71 task_runner_->PostNonNestableTask(FROM_HERE, task);
88 base::Closure task = local
91 task_runner_->PostNonNestableTask(FROM_HERE, task);
/system/bt/test/rootcanal/
H A Dbluetooth_hci.cc101 [this](std::chrono::milliseconds delay, const TaskCallback& task) {
102 return async_manager_.ExecAsync(delay, task);
107 const TaskCallback& task) {
108 return async_manager_.ExecAsyncPeriodically(delay, period, task);
112 [this](AsyncTaskId task) { async_manager_.CancelAsyncTask(task); });
/system/tools/aidl/
H A Dmain_java.cpp41 switch (options->task) {
H A Doptions.cpp78 options->task = PREPROCESS_AIDL;
82 options->task = COMPILE_AIDL_TO_JAVA;
H A Doptions_unittest.cpp113 EXPECT_EQ(JavaOptions::PREPROCESS_AIDL, options->task);
129 EXPECT_EQ(JavaOptions::COMPILE_AIDL_TO_JAVA, options->task);
142 EXPECT_EQ(JavaOptions::COMPILE_AIDL_TO_JAVA, options->task);
H A Doptions.h47 int task{COMPILE_AIDL_TO_JAVA};
/system/tpm/tpm_manager/client/
H A Dmain.cc210 base::Closure task; local
218 task = base::Bind(&ClientLoop::HandleGetTpmStatus,
221 task = base::Bind(&ClientLoop::HandleTakeOwnership,
227 task = base::Bind(&ClientLoop::HandleRemoveOwnerDependency,
235 task = base::Bind(
246 task = base::Bind(
254 task = base::Bind(
265 task = base::Bind(
275 task = base::Bind(
283 task
[all...]
/system/tpm/attestation/client/
H A Dmain.cc125 base::Closure task; local
133 task = base::Bind(&ClientLoop::CallCreateGoogleAttestedKey,
147 task = base::Bind(&ClientLoop::CallCreateCertifiableKey,
152 task = base::Bind(&ClientLoop::CallGetKeyInfo, weak_factory_.GetWeakPtr(),
156 task = base::Bind(&ClientLoop::CallGetEndorsementInfo,
159 task = base::Bind(&ClientLoop::CallGetAttestationKeyInfo,
171 task = base::Bind(&ClientLoop::CallActivateAttestationKey,
184 task = base::Bind(&ClientLoop::EncryptForActivate,
197 task = base::Bind(&ClientLoop::Encrypt, weak_factory_.GetWeakPtr(),
210 task
[all...]
/system/tpm/attestation/server/
H A Dattestation_service.cc84 base::Closure task = local
90 worker_thread_->task_runner()->PostTaskAndReply(FROM_HERE, task, reply);
163 base::Closure task = base::Bind(&AttestationService::GetKeyInfoTask, local
168 worker_thread_->task_runner()->PostTaskAndReply(FROM_HERE, task, reply);
202 base::Closure task = base::Bind(&AttestationService::GetEndorsementInfoTask, local
207 worker_thread_->task_runner()->PostTaskAndReply(FROM_HERE, task, reply);
248 base::Closure task = local
254 worker_thread_->task_runner()->PostTaskAndReply(FROM_HERE, task, reply);
301 base::Closure task = local
307 worker_thread_->task_runner()->PostTaskAndReply(FROM_HERE, task, repl
344 base::Closure task = base::Bind(&AttestationService::CreateCertifiableKeyTask, local
376 base::Closure task = base::Bind(&AttestationService::DecryptTask, local
403 base::Closure task = base::Bind(&AttestationService::SignTask, local
430 base::Closure task = local
[all...]
/system/bt/btif/include/
H A Dbtif_common.h91 * BTIF events for requests that require context switch to btif task
120 * BTIF events for callbacks that require context switch to btif task
176 extern bt_status_t do_in_jni_thread(const base::Closure& task);
178 const base::Closure& task);
/system/bt/vendor_libs/test_vendor_lib/src/
H A Dasync_manager.cc58 // using a single internal mutex. When the first task is scheduled a thread
60 // when the next task should be carried out and then the thread performs a
62 // time out or a notify on the cond var, the former means a task is due
64 // state, like a task has been scheduled/canceled or the flag to stop has
65 // been set. Setting and querying the stop flag or modifying the task queue
277 // Async task manager implementation
294 // remove task from queue (and task id asociation) while holding lock
324 "%s: Starting thread stop from inside the task thread itself",
331 // Holds the data for each task
376 scheduleTask(const std::shared_ptr<Task>& task) argument
[all...]
H A Ddual_mode_controller.cc76 const TaskCallback& task) {
77 controller_events_.push_back(schedule_task_(delay, task));
75 AddControllerEvent(std::chrono::milliseconds delay, const TaskCallback& task) argument
/system/tpm/tpm_manager/server/
H A Dtpm_manager_service.cc41 base::Closure task = local
43 worker_thread_->task_runner()->PostNonNestableTask(FROM_HERE, task);
328 TaskType task) {
331 base::Bind(task, base::Unretained(this), request, result);
326 PostTaskToWorkerThread(RequestProtobufType& request, ReplyCallbackType& callback, TaskType task) argument
H A Dtpm_manager_service.h54 // process a task after destruction). Weak pointers are used to post replies
115 TaskType task);
/system/nfc/halimpl/bcm2079x/gki/common/
H A Dgki_debug.c95 uint16_t gki_calc_stack(uint8_t task) { argument
100 stacksize = (int)gki_cb.com.OSStackSize[task];
101 p = (uint32_t*)gki_cb.com.OSStack[task]; /* assume stack is aligned, */
115 ** Description Print task stack usage.
224 ** Description This function prints the task states.
/system/bt/btif/src/
H A Dbtif_core.cc138 /* sends message to btif task */
176 * Description This function switches context to btif task
217 * This function posts a task into the btif message loop, that executes it in
221 const base::Closure& task) {
228 if (message_loop_->task_runner()->PostTask(from_here, task))
231 BTIF_TRACE_ERROR("%s: Post task to task runner failed!", __func__);
235 bt_status_t do_in_jni_thread(const base::Closure& task) { argument
236 return do_in_jni_thread(FROM_HERE, task);
276 * Description BTIF task handle
220 do_in_jni_thread(const tracked_objects::Location& from_here, const base::Closure& task) argument
[all...]
/system/bt/bta/sys/
H A Dbta_sys_main.cc169 * Description BTA initialization; called from task initialization.
444 * Description BTA event handler; called from task event handler.
550 const base::Closure& task) {
558 bta_message_loop->task_runner()->PostTask(from_here, task);
549 do_in_bta_thread(const tracked_objects::Location& from_here, const base::Closure& task) argument
H A Dbta_sys.h227 const base::Closure& task);
/system/extras/simpleperf/
H A Devent_attr.cpp130 PrintIndented(indent + 1, "inherit_stat %u, enable_on_exec %u, task %u\n", attr.inherit_stat,
131 attr.enable_on_exec, attr.task);
/system/bt/stack/btu/
H A Dbtu_hcif.cc130 const base::Closure& task) {
138 hci_message_loop->task_runner()->PostTask(from_here, task);
129 do_in_hci_thread(const tracked_objects::Location& from_here, const base::Closure& task) argument
/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/gradle/wrapper/
H A Dgradle-wrapper.jar ... .File exclusiveFile java.util.concurrent.Callable task java.io.File lockFile java.io. ...
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/gradle/wrapper/
H A Dgradle-wrapper.jar ... .File exclusiveFile java.util.concurrent.Callable task java.io.File lockFile java.io. ...
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/gradle/wrapper/
H A Dgradle-wrapper.jar ... .File exclusiveFile java.util.concurrent.Callable task java.io.File lockFile java.io. ...

Completed in 1046 milliseconds