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

1 2 3

  /external/chromium/chrome/browser/
power_save_blocker_stub.cc 9 void PowerSaveBlocker::ApplyBlock(bool blocking) {
power_save_blocker_win.cc 12 void PowerSaveBlocker::ApplyBlock(bool blocking) {
17 if (blocking)
power_save_blocker_mac.cc 12 void PowerSaveBlocker::ApplyBlock(bool blocking) {
21 if (blocking) {
  /libcore/luni/src/main/native/
NetworkUtilities.h 37 // Changes 'fd' to be blocking/non-blocking. Returns false and sets errno on failure.
39 bool setBlocking(int fd, bool blocking);
NetworkUtilities.cpp 164 bool setBlocking(int fd, bool blocking) {
170 if (!blocking) {
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 84 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
85 IoUtils.setBlocking(getFD(), blocking); local
119 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
120 IoUtils.setBlocking(getFD(), blocking); local
ServerSocketChannelImpl.java 79 // continue to accept if the channel is in blocking mode.
80 // TODO: does this make sense? why does blocking imply no timeouts?
91 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
93 IoUtils.setBlocking(impl.getFD$(), blocking); local
DatagramChannelImpl.java 421 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
423 IoUtils.setBlocking(fd, blocking);
SocketChannelImpl.java 449 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
451 IoUtils.setBlocking(fd, blocking);
580 * Throws an IllegalBlockingModeException if the channel is in non-blocking
623 * Throws an IllegalBlockingModeException if the channel is in non-blocking
  /external/libselinux/src/
avc_internal.c 58 int avc_netlink_open(int blocking)
70 if (!blocking && fcntl(fd, F_SETFL, O_NONBLOCK)) {
96 static int avc_netlink_receive(char *buf, unsigned buflen, int blocking)
104 rc = poll(&pfd, 1, (blocking ? -1 : 0));
106 if (rc == 0 && !blocking) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterPort.java 64 public void setBlocking(boolean blocking) {
65 mIsBlocking = blocking;
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 82 * Sets 'fd' to be blocking or non-blocking, according to the state of 'blocking'.
84 public static void setBlocking(FileDescriptor fd, boolean blocking) throws IOException {
87 if (!blocking) {
  /external/iptables/include/libipq/
libipq.h 51 u_int8_t blocking; member in struct:ipq_handle
  /external/libvpx/vp8/common/
duck_io.h 32 int blocking; // non-zero for blocking member in struct:__anon8437
  /packages/apps/Settings/src/com/android/settings/net/
UidDetailProvider.java 52 public UidDetail getUidDetail(int uid, boolean blocking) {
61 } else if (!blocking) {
75 * Build {@link UidDetail} object, blocking until all {@link Drawable}
  /external/chromium/chrome/browser/chromeos/login/
ownership_service.h 43 // blocking on UI thread.
96 // This method can be run either on FILE or UI threads. If |blocking| flag
100 virtual Status GetStatus(bool blocking);
ownership_service.cc 76 OwnershipService::Status OwnershipService::GetStatus(bool blocking) {
83 if (status != OWNERSHIP_UNKNOWN || !blocking)
87 LOG(ERROR) << "Blocking on UI thread in OwnershipService::GetStatus";
  /external/libselinux/include/selinux/
avc.h 151 /* obtain a given lock, blocking if necessary. */
433 int avc_netlink_open(int blocking);
  /external/oprofile/events/mips/rm7000/
events 30 event:0x1a counters:0,1 um:zero minimum:500 name:SLIP_CYCLES_PENDING_NON_BLKING_LOAD : Slip cycles due to pending non-blocking loads
34 event:0x1f counters:0,1 um:zero minimum:500 name:STALL_CYCLES_PENDING_NON_BLKING_LOAD : Stall cycles due to pending non-blocking loads - stall start of exception
  /external/oprofile/events/mips/rm9000/
events 29 event:0x1a counters:0,1 um:zero minimum:500 name:NONBLOCKING_LOAD_SLIP_CYCLES : Slip cycles due to pending non-blocking loads
32 event:0x1e counters:0,1 um:zero minimum:500 name:NONBLOCKING_LOAD_PENDING_EXCEPTION_STALL_CYCLES : Stall cycles due to pending non-blocking loads - stall start of exception
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 121 * if this channel is in blocking mode.
192 * Indicates whether this channel is in blocking mode.
194 * @return {@code true} if this channel is blocking, {@code false}
216 * Sets the blocking mode of this channel. A call to this method blocks if
223 * {@code true} for setting this channel's mode to blocking,
224 * {@code false} to set it to non-blocking.
253 * Implements the configuration of blocking/non-blocking mode.
255 * @param blocking true for blocking, false for non-blocking
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLLinkElement.cpp 101 addPendingSheet(Blocking);
109 addPendingSheet(Blocking);
300 bool blocking = mediaQueryMatches && !isAlternate(); local
301 addPendingSheet(blocking ? Blocking : NonBlocking);
304 ResourceLoadPriority priority = blocking ? ResourceLoadPriorityUnresolved : ResourceLoadPriorityVeryLow;
526 // Document::removePendingSheet() triggers the style selector recalc for blocking sheets.
  /cts/tests/tests/webkitsecurity/assets/
location-new-window-no-crash.js 1 description("Tests that manipulating location properties in a just-created window object does not crash. Note: Turn off pop-up blocking to run this in-browser.");
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsEditor.java 168 public ContactList constructContactsFromInput(boolean blocking) {
172 Contact contact = Contact.get(number, blocking);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 

Completed in 489 milliseconds

1 2 3