HomeSort by relevance Sort by last modified time
    Searched full:blocked (Results 1 - 25 of 604) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/storage/indexeddb/
set_version_blocked-expected.txt 7 IndexedDB.open('set-version-blocked')
8 IndexedDB.open('set-version-blocked')
set_version_queue-expected.txt 23 PASS connection[0] got blocked event
34 PASS connection[1] got blocked event
35 Ensure that this blocked event is in order:
42 PASS connection[2] got blocked event
50 PASS connection[3] got blocked event
51 Note: This means that a connection can receive a blocked event after its close() method has been called. Spec is silent on the issue and this is easiest to implement.
set_version_blocked.html 30 request = evalAndLog("IndexedDB.open('set-version-blocked')");
46 versionChangeRequest.onblocked = blocked;
51 function blocked()
set_version_queue.html 78 testPassed("connection[0] got blocked event");
91 testPassed("connection[1] got blocked event");
92 debug("Ensure that this blocked event is in order:");
101 testPassed("connection[2] got blocked event");
111 testPassed("connection[3] got blocked event");
112 debug("Note: This means that a connection can receive a blocked event after its close() method has been called. Spec is silent on the issue and this is easiest to implement.");
  /external/chromium/chrome/browser/
blocked_content_container.h 5 // Defines the public interface for the blocked content (including popup)
8 // to access information about blocked content.
32 // Shows the blocked TabContents |tab_contents|.
35 // Returns the number of blocked contents.
72 // Removes |source| from our internal list of blocked contents.
87 // Maximum number of blocked contents we allow. No page should really need
100 // Information about all blocked contents.
popup_blocker_browsertest.cc 27 FilePath file_name(FILE_PATH_LITERAL("popup-blocked-to-post-blank.html"));
32 // If the popup blocker blocked the blank post, there should be only one
power_save_blocker.h 28 static void ApplyBlock(bool blocked);
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 49 int blocked; member in struct:rfkill_data
80 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
83 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
90 if (new_blocked != rfkill->blocked) {
91 rfkill->blocked = new_blocked;
147 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
148 rfkill->blocked = 1;
150 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
151 rfkill->blocked = 1;
187 return rfkill->blocked;
    [all...]
  /external/chromium/chrome/browser/resources/
collected_cookies.js 20 var blockedCookies = $('blocked-cookies');
40 var selected = $('blocked-cookies').selectedItem;
46 var selected = $('blocked-cookies').selectedItem;
53 ui.CookiesTree.decorate($('blocked-cookies'));
58 $('blocked-cookies').addEventListener('change', handleCookiesTreeChange);
  /external/chromium/net/base/
load_states.h 12 // may be blocked and unable to make progress.
20 // This state corresponds to a resource load that is blocked waiting for
27 // This state corresponds to a resource load that is blocked waiting for a
37 // This state corresponds to a resource load that is blocked waiting for a
43 // This state corresponds to a resource load that is blocked waiting for a
48 // This state corresponds to a resource load that is blocked waiting for the
52 // This state corresponds to a resource load that is blocked waiting to
58 // This state corresponds to a resource load that is blocked waiting for the
64 // This state corresponds to a resource load that is blocked waiting for a
  /cts/tests/assets/webkit/
popup_base.html 24 document.title = "Popup blocked";
29 Popup blocked
  /external/valgrind/main/none/tests/
async-sigs.c 129 test(/*non-blocked*/0, /* sync*/SIGSEGV, /* sync*/SIGBUS);
130 test(/*non-blocked*/0, /* sync*/SIGSEGV, /*async*/SIGHUP);
131 test(/*non-blocked*/0, /*async*/SIGUSR1, /* sync*/SIGBUS);
132 test(/*non-blocked*/0, /*async*/SIGUSR1, /*async*/SIGHUP);
133 test(/* blocked*/1, /* sync*/SIGSEGV, /* sync*/SIGBUS);
134 test(/* blocked*/1, /* sync*/SIGSEGV, /*async*/SIGHUP);
135 test(/* blocked*/1, /*async*/SIGUSR1, /* sync*/SIGBUS);
136 test(/* blocked*/1, /*async*/SIGUSR1, /*async*/SIGHUP);
  /external/chromium/chrome/browser/ui/views/tabs/
tab_renderer_data.cc 14 blocked(false),
33 blocked == data.blocked &&
  /cts/tests/tests/webkitsecurity/assets/
worker-crash-with-invalid-location.html 3 <p>Test worker fetch of blocked url. Should print a "PASS" statement.</p>
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.h 34 // |content_was_blocked| is true, if a content settings type was blocked
57 void SetPopupsBlocked(bool blocked);
63 // Returns whether a particular kind of content has been blocked for this
88 // Returns a CookiesTreeModel object for the recoreded blocked cookies.
168 // Stores which content setting types actually have blocked content.
171 // Stores if the blocked content was messaged to the user.
177 // Stores the blocked resources for each content type.
182 // Stores the blocked/allowed cookies.
189 // Stores whether the user can load blocked plugins on this page.
  /external/chromium/chrome/browser/ui/webui/chromeos/
sim_unlock_ui.h 16 // - Display "SIM card is blocked" message when there're no PUK tries left.
  /external/valgrind/main/memcheck/tests/
sigprocmask.c 32 // blocked as perl has been known to leave some signals blocked
  /libcore/luni/src/main/native/
AsynchronousSocketCloseMonitor.cpp 27 * We use an intrusive doubly-linked list to keep track of blocked threads.
30 * Waking potentially-blocked threads when a socket is closed is O(n) in the total number of
31 * blocked threads (not the number of threads actually blocked on the socket in question).
56 ALOGE("setting blocked thread signal handler failed: %s", strerror(errno));
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 25 * A channel that can be asynchronously closed permits that a thread blocked on
30 * A channel that is interruptible permits a thread blocked on an I/O operation
43 * Any threads that are blocked on I/O operations on this channel will be
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model.cc 116 std::vector<GURL> blocked(service_->GetBlockedOrigins());
117 entries_.reserve(allowed.size() + blocked.size());
120 for (size_t i = 0; i < blocked.size(); ++i)
121 entries_.push_back(Entry(blocked[i], CONTENT_SETTING_BLOCK));
  /external/valgrind/main/gdbserver_tests/
mcinvokeWS.vgtest 2 # If the test goes wrong, it might be blocked during 10000 seconds.
  /external/webkit/LayoutTests/fast/dom/beforeload/
remove-frame-in-beforeload-listener.html 14 // Blocked access to external URL http://webkit.org/
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
content_setting_bubble_cocoa.h 23 // Manages a "content blocked" bubble.
45 // Creates and shows a content blocked bubble. Takes ownership of
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadStateTest.java 24 Thread.State.BLOCKED, Thread.State.WAITING,
28 String [] spNames = {"NEW", "RUNNABLE", "BLOCKED", "WAITING",
  /packages/apps/Email/tests/src/com/android/email/
SingleRunningTaskTest.java 32 // The task will be blocked if true
98 // The call will be blocked, so run it on another thread.
114 // Now the task is running, blocked.

Completed in 1270 milliseconds

1 2 3 4 5 6 7 8 91011>>