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

1 2

  /libcore/luni/src/main/java/java/util/concurrent/locks/
LockSupport.java 38 * {@code blocker} object parameter. This object is recorded while
44 * {@code blocker} within a lock implementation is {@code this}.
150 * @param blocker the synchronization object responsible for this
154 public static void park(Object blocker) {
156 setBlocker(t, blocker);
188 * @param blocker the synchronization object responsible for this
193 public static void parkNanos(Object blocker, long nanos) {
196 setBlocker(t, blocker);
229 * @param blocker the synchronization object responsible for this
235 public static void parkUntil(Object blocker, long deadline)
    [all...]
  /external/chromium_org/ui/message_center/
notification_blocker.h 22 virtual void OnBlockingStateChanged(NotificationBlocker* blocker) = 0;
40 // When a blocker starts returning false for a notification which is already
message_center_observer.h 54 // Called when the blocking state of |blocker| is changed.
55 virtual void OnBlockingStateChanged(NotificationBlocker* blocker) {}
fake_message_center.cc 22 void FakeMessageCenter::AddNotificationBlocker(NotificationBlocker* blocker) {
26 NotificationBlocker* blocker) {
fake_message_center.h 24 virtual void AddNotificationBlocker(NotificationBlocker* blocker) OVERRIDE;
25 virtual void RemoveNotificationBlocker(NotificationBlocker* blocker) OVERRIDE;
message_center.h 74 virtual void AddNotificationBlocker(NotificationBlocker* blocker) = 0;
75 virtual void RemoveNotificationBlocker(NotificationBlocker* blocker) = 0;
message_center_tray.h 79 virtual void OnBlockingStateChanged(NotificationBlocker* blocker) OVERRIDE;
message_center_tray.cc 157 void MessageCenterTray::OnBlockingStateChanged(NotificationBlocker* blocker) {
message_center_impl.h 146 virtual void AddNotificationBlocker(NotificationBlocker* blocker) OVERRIDE;
147 virtual void RemoveNotificationBlocker(NotificationBlocker* blocker) OVERRIDE;
192 virtual void OnBlockingStateChanged(NotificationBlocker* blocker) OVERRIDE;
message_center_impl_unittest.cc 321 // Multiple blockers to verify the case that one blocker blocks but another
380 ToggledNotificationBlocker blocker(message_center());
396 blocker.SetNotificationsEnabled(false);
411 blocker.SetNotificationsEnabled(true);
419 // Similar to other blocker cases but this test case allows |notifier_id2| even
424 PopupNotificationBlocker blocker(message_center(), notifier_id2);
448 blocker.SetNotificationsEnabled(false);
481 blocker.SetNotificationsEnabled(true);
496 TotalNotificationBlocker blocker(message_center(), notifier_id2);
520 blocker.SetNotificationsEnabled(false)
    [all...]
message_center_impl.cc 438 void MessageCenterImpl::AddNotificationBlocker(NotificationBlocker* blocker) {
439 if (std::find(blockers_.begin(), blockers_.end(), blocker) !=
443 blocker->AddObserver(this);
444 blockers_.push_back(blocker);
448 NotificationBlocker* blocker) {
450 std::find(blockers_.begin(), blockers_.end(), blocker);
453 blocker->RemoveObserver(this);
457 void MessageCenterImpl::OnBlockingStateChanged(NotificationBlocker* blocker) {
477 OnBlockingStateChanged(blocker));
  /external/chromium_org/base/threading/
sequenced_worker_pool_unittest.cc 89 void BlockTask(int id, ThreadBlocker* blocker) {
98 blocker->Block();
226 ThreadBlocker blocker; local
230 tracker(), -1, &blocker));
235 blocker.Unblock(kNumWorkerThreads);
258 ThreadBlocker* blocker,
264 blocker->Unblock(threads_to_awake);
410 ThreadBlocker blocker; local
414 base::Bind(&TestTracker::BlockTask, tracker(), 100, &blocker));
447 blocker.Unblock(1)
459 ThreadBlocker blocker; local
509 ThreadBlocker blocker; local
555 ThreadBlocker blocker; local
606 ThreadBlocker blocker; local
649 ThreadBlocker blocker; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_context.h 73 int blocker; member in struct:rbug_context::__anon15473
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.h 73 int blocker; member in struct:rbug_context::__anon25940
  /external/chromium_org/chrome/browser/notifications/
balloon_notification_ui_manager.h 91 message_center::NotificationBlocker* blocker) OVERRIDE;
login_state_notification_blocker_chromeos_browsertest.cc 60 message_center::NotificationBlocker* blocker) OVERRIDE {
login_state_notification_blocker_chromeos_unittest.cc 41 message_center::NotificationBlocker* blocker) OVERRIDE {
balloon_notification_ui_manager.cc 221 message_center::NotificationBlocker* blocker) {
multi_user_notification_blocker_chromeos_unittest.cc 57 message_center::NotificationBlocker* blocker) OVERRIDE {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_context.h 120 rbug_block_t blocker; member in struct:rbug_proto_context_info_reply
181 rbug_block_t blocker,
rbug_context.c 378 rbug_block_t blocker,
394 LEN(4); /* blocker */
412 WRITE(4, rbug_block_t, blocker); /* blocker */
716 READ(4, rbug_block_t, blocker); /* blocker */
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_context.h 120 rbug_block_t blocker; member in struct:rbug_proto_context_info_reply
181 rbug_block_t blocker,
rbug_context.c 378 rbug_block_t blocker,
394 LEN(4); /* blocker */
412 WRITE(4, rbug_block_t, blocker); /* blocker */
716 READ(4, rbug_block_t, blocker); /* blocker */
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 273 SVGElementInstance::InstanceUpdateBlocker blocker(targetElement);
293 SVGElementInstance::InstanceUpdateBlocker blocker(targetElement);
317 SVGElementInstance::InstanceUpdateBlocker blocker(targetElement);
SVGAnimatedPath.cpp 58 SVGElementInstance::InstanceUpdateBlocker blocker(property->contextElement());

Completed in 1012 milliseconds

1 2