HomeSort by relevance Sort by last modified time
    Searched defs:Cancelable (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
cancelable-task.cc 5 #include "src/cancelable-task.h"
14 Cancelable::Cancelable(CancelableTaskManager* parent)
20 Cancelable::~Cancelable() {
31 uint32_t CancelableTaskManager::Register(Cancelable* task) {
54 Cancelable* value = entry->second;
67 // Clean up all cancelable fore- and background tasks. Tasks are canceled on
73 // Cancelable tasks could be running or could potentially register new
93 : Cancelable(isolate->cancelable_task_manager()), isolate_(isolate) {
    [all...]
cancelable-task.h 18 class Cancelable;
22 // Keeps track of cancelable tasks. It is possible to register and remove tasks
28 // Registers a new cancelable {task}. Returns the unique {id} of the task that
30 uint32_t Register(Cancelable* task);
47 // Only called by {Cancelable} destructor. The task is done with executing,
54 // A set of cancelable tasks that are currently registered.
55 std::map<uint32_t, Cancelable*> cancelable_tasks_;
62 friend class Cancelable;
68 class Cancelable {
70 explicit Cancelable(CancelableTaskManager* parent)
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
RequestKey.java 87 * @return If the client will attempt to create a FileDescriptorFactory, return a Cancelable
89 * return null. The callback must be notified if and only if the client returns a Cancelable
92 public Cancelable createFileDescriptorFactoryAsync(RequestKey key, Callback callback);
133 * Interface for a background task that is cancelable.
135 public interface Cancelable {

Completed in 123 milliseconds