HomeSort by relevance Sort by last modified time
    Searched refs:Tasks (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/llvm/lib/Support/
ThreadPool.cpp 29 // for tasks to be queued or the Pool to be destroyed.
37 // Wait for tasks to be pushed in the queue
39 [&] { return !EnableFlag || !Tasks.empty(); });
41 if (!EnableFlag && Tasks.empty())
52 Task = std::move(Tasks.front());
53 Tasks.pop();
78 // The order of the checks for ActiveThreads and Tasks.empty() matters because
79 // any active threads might be modifying the Tasks queue, and this would be a
82 [&] { return !ActiveThreads && Tasks.empty(); });
96 Tasks.push(std::move(PackagedTask))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
ThreadPool.cpp 30 // for tasks to be queued or the Pool to be destroyed.
38 // Wait for tasks to be pushed in the queue
40 [&] { return !EnableFlag || !Tasks.empty(); });
42 if (!EnableFlag && Tasks.empty())
53 Task = std::move(Tasks.front());
54 Tasks.pop();
75 // The order of the checks for ActiveThreads and Tasks.empty() matters because
76 // any active threads might be modifying the Tasks queue, and this would be a
79 [&] { return !ActiveThreads && Tasks.empty(); });
93 Tasks.push(std::move(PackagedTask))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
TaskQueue.h 75 assert(Tasks.empty());
79 /// used to wait for the task (and all previous tasks that have not yet
96 Tasks.push_back(std::move(T));
107 // We just completed a task. If there are no more tasks in the queue,
113 if (Tasks.empty()) {
118 Continuation = std::move(Tasks.front());
119 Tasks.pop_front();
131 /// Mutex for synchronizing access to the Tasks array.
134 /// Tasks waiting for execution in the queue.
135 std::deque<std::function<void()>> Tasks;
    [all...]
ThreadPool.h 69 /// It is an error to try to add new tasks while blocking on this call.
80 /// Tasks waiting for execution in the pool.
81 std::queue<PackagedTaskTy> Tasks;
83 /// Locking and signaling for accessing the Tasks queue.
  /external/grpc-grpc/examples/csharp/RouteGuide/RouteGuideServer/
Program.cs 20 using System.Threading.Tasks;
  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
CStringSafeHandle.cs 18 using System.Threading.Tasks;
CallCredentialsSafeHandle.cs 19 using System.Threading.Tasks;
ChannelArgsSafeHandle.cs 18 using System.Threading.Tasks;
ChannelCredentialsSafeHandle.cs 19 using System.Threading.Tasks;
ClientRequestStream.cs 17 using System.Threading.Tasks;
ClientResponseStream.cs 22 using System.Threading.Tasks;
ServerCalls.cs 21 using System.Threading.Tasks;
ServerCredentialsSafeHandle.cs 19 using System.Threading.Tasks;
ServerRequestStream.cs 22 using System.Threading.Tasks;
  /external/grpc-grpc/src/csharp/Grpc.Core/Utils/
TaskUtils.cs 20 using System.Threading.Tasks;
  /external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/
CompletionQueueEventTest.cs 21 using System.Threading.Tasks;
  /external/grpc-grpc/src/csharp/Grpc.Core.Tests/
ShutdownHookClientTest.cs 23 using System.Threading.Tasks;
ShutdownHookServerTest.cs 23 using System.Threading.Tasks;
  /external/llvm/include/llvm/Support/
ThreadPool.h 105 /// It is an error to try to add new tasks while blocking on this call.
116 /// Tasks waiting for execution in the pool.
117 std::queue<PackagedTaskTy> Tasks;
119 /// Locking and signaling for accessing the Tasks queue.
  /developers/build/prebuilts/gradle/DataLayer/Application/src/main/java/com/example/android/wearable/datalayer/
MainActivity.java 39 import com.google.android.gms.tasks.OnSuccessListener;
40 import com.google.android.gms.tasks.Task;
41 import com.google.android.gms.tasks.Tasks;
225 Integer result = Tasks.await(sendMessageTask);
300 List<Node> nodes = Tasks.await(nodeListTask);
410 DataItem dataItem = Tasks.await(dataItemTask);
  /developers/samples/android/wearable/wear/DataLayer/Application/src/main/java/com/example/android/wearable/datalayer/
MainActivity.java 40 import com.google.android.gms.tasks.OnSuccessListener;
41 import com.google.android.gms.tasks.Task;
42 import com.google.android.gms.tasks.Tasks;
226 Integer result = Tasks.await(sendMessageTask);
302 List<Node> nodes = Tasks.await(nodeListTask);
405 DataItem dataItem = Tasks.await(dataItemTask);
  /external/grpc-grpc/examples/csharp/Helloworld/GreeterServer/
Program.cs 16 using System.Threading.Tasks;
  /external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/GreeterServer/
Program.cs 16 using System.Threading.Tasks;
  /external/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/Resources/
Resource.designer.cs 18 [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
  /external/grpc-grpc/src/csharp/Grpc.Core/
AsyncAuthInterceptor.cs 21 using System.Threading.Tasks;

Completed in 1044 milliseconds

1 2 3 4 5 6