Home
last modified time | relevance | path

Searched refs:task_name (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/native/cmds/dumpstate/
H A DDumpPool.h90 template<class F, class... Args> void enqueueTask(const std::string& task_name, F&& f, in enqueueTask() argument
94 futures_map_[task_name] = post(task_name, func); in enqueueTask()
110 template<class F, class... Args> void enqueueTaskWithFd(const std::string& task_name, F&& f, in enqueueTaskWithFd() argument
114 futures_map_[task_name] = post(task_name, func); in enqueueTaskWithFd()
123 void waitForTask(const std::string& task_name) { in waitForTask() argument
124 waitForTask(task_name, "", STDOUT_FILENO); in waitForTask()
135 void waitForTask(const std::string& task_name, const std::string& title, int out_fd);
150 template<class T> Future post(const std::string& task_name, T dump_func) { in post() argument
156 invokeTask(dump_func, task_name, tmp_file_ptr->fd.get()); in post()
H A DDumpPool.cpp82 void DumpPool::waitForTask(const std::string& task_name, const std::string& title, in waitForTask() argument
84 DurationReporter duration_reporter("Wait for " + task_name, true); in waitForTask()
85 auto iterator = futures_map_.find(task_name); in waitForTask()
87 MYLOGW("Task %s does not exist", task_name.c_str()); in waitForTask()
H A Ddumpstate.cpp219 #define WAIT_TASK_WITH_CONSENT_CHECK(task_name, pool_ptr) \ argument
221 pool_ptr->waitForTask(task_name); \
/aosp12/hardware/samsung/nfc/halimpl/osi/
H A Dosi_task.cc45 tOSI_TASK_HANDLER OSI_task_allocate(const char* task_name, in OSI_task_allocate() argument
61 (char const*)task_name) == 0) { in OSI_task_allocate()
62 OSI_loge("%s : %s task is already allocated [%d]", __func__, task_name, in OSI_task_allocate()
74 free_task->name = task_name; in OSI_task_allocate()
H A Dosi.h75 tOSI_TASK_HANDLER OSI_task_allocate(const char* task_name,
/aosp12/frameworks/base/startop/scripts/trace_analyzer/lib/
H A Dtrace2db.py39 task_name = Column(String, nullable=True) # <...> -> None. variable in RawFtraceEntry
68 task_name = groups[0]
69 if task_name == '<...>':
70 task_name = None
83 …return {'task_name': task_name, 'task_pid': task_pid, 'tgid': tgid, 'cpu': cpu, 'timestamp': times…
/aosp12/system/memory/lmkd/tests/
H A Dlmkd_test.cpp316 std::string task_name; in TEST() local
317 ASSERT_TRUE(getTaskName(task_name)); in TEST()
324 task_name.c_str()); in TEST()
340 marker = StringPrintf(LMKD_KILL_MARKER_TEMPLATE, task_name.c_str()); in TEST()
/aosp12/system/core/storaged/
H A Dstoraged.proto19 optional string task_name = 1; field
H A Dstoraged_uid_monitor.cpp437 const std::string& task_name = task_io.first; in update_uid_io_proto() local
441 task_io_proto->set_task_name(task_name); in update_uid_io_proto()
504 &record.ios.task_ios[task_io_proto.task_name()], in load_uid_io_proto()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
H A DTaskMenuView.java93 mTaskName = findViewById(R.id.task_name); in onFinishInflate()