HomeSort by relevance Sort by last modified time
    Searched refs:blocking (Results 26 - 50 of 139) sorted by null

12 3 4 5 6

  /libcore/luni/src/main/java/java/nio/
ServerSocketChannelImpl.java 79 // Otherwise, this is a non-blocking socket and there's nothing ready, so we'll
102 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
103 IoUtils.setBlocking(impl.getFD$(), blocking); local
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 87 * Sets 'fd' to be blocking or non-blocking, according to the state of 'blocking'.
89 public static void setBlocking(FileDescriptor fd, boolean blocking) throws IOException {
92 if (!blocking) {
  /packages/apps/Settings/src/com/android/settings/net/
UidDetailProvider.java 63 public UidDetail getUidDetail(int uid, boolean blocking) {
72 } else if (!blocking) {
86 * 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/eigen/Eigen/src/Core/products/
TriangularMatrixVector_MKL.h 85 const EIGTYPE* _rhs, Index rhsIncr, EIGTYPE* _res, Index resIncr, EIGTYPE alpha, level3_blocking<EIGTYPE,EIGTYPE>& blocking) \
89 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha, blocking); \
170 const EIGTYPE* _rhs, Index rhsIncr, EIGTYPE* _res, Index resIncr, EIGTYPE alpha, level3_blocking<EIGTYPE,EIGTYPE>& blocking) \
174 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha, blocking); \
TriangularMatrixMatrix_MKL.h 125 gemm_blocking_space<ColMajor,EIGTYPE,EIGTYPE,Dynamic,Dynamic,Dynamic> blocking(_rows,_cols,_depth); \
127 rows, cols, depth, aa_tmp.data(), aStride, _rhs, rhsStride, res, resStride, alpha, blocking, 0); \
239 gemm_blocking_space<ColMajor,EIGTYPE,EIGTYPE,Dynamic,Dynamic,Dynamic> blocking(_rows,_cols,_depth); \
241 rows, cols, depth, _lhs, lhsStride, aa_tmp.data(), aStride, res, resStride, alpha, blocking, 0); \
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
ImageReaderTest.java 20 import static com.android.ex.camera2.blocking.BlockingStateListener.*;
39 import com.android.ex.camera2.blocking.BlockingCameraManager.BlockingOpenException;
40 import com.android.ex.camera2.blocking.BlockingStateListener;
CameraTestUtils.java 32 import com.android.ex.camera2.blocking.BlockingCameraManager;
33 import com.android.ex.camera2.blocking.BlockingCameraManager.BlockingOpenException;
  /external/chromium_org/printing/backend/
print_backend_cups.cc 114 http_encryption_t encryption, bool blocking);
147 bool blocking)
150 blocking_(blocking) {
350 // configuration/issues. To prevent that, use non-blocking http connection
352 // Note: After looking at CUPS sources, it looks like non-blocking
358 // Check if the get full PPD, since non-blocking call may simply return
  /external/chromium_org/third_party/sqlite/src/test/
lock_common.tcl 127 fconfigure $chan -blocking 0 -buffering none
  /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/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
scope_approval_dialog.js 30 }, ['blocking', 'requestHeaders']);
  /external/chromium_org/dbus/
dbus_statistics.cc 225 line += base::StringPrintf(" Sent (BLOCKING):");
268 int* blocking) {
276 *blocking = stat->sent_blocking_method_calls;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
Camera2Source.java 37 import com.android.ex.camera2.blocking.BlockingCameraManager;
38 import com.android.ex.camera2.blocking.BlockingCameraManager.BlockingOpenException;
  /libcore/luni/src/main/native/
NetworkUtilities.cpp 207 bool setBlocking(int fd, bool blocking) {
213 if (!blocking) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 118 without blocking; the thread must release it once for each time it has
127 again without blocking; the thread must release it once for each time it
146 def acquire(self, blocking=1):
147 """Acquire a lock, blocking or non-blocking.
158 When invoked with the blocking argument set to true, do the same thing
161 When invoked with the blocking argument set to false, do not block. If a
171 self._note("%s.acquire(%s): recursive success", self, blocking)
173 rc = self.__block.acquire(blocking)
178 self._note("%s.acquire(%s): initial success", self, blocking)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 118 without blocking; the thread must release it once for each time it has
127 again without blocking; the thread must release it once for each time it
146 def acquire(self, blocking=1):
147 """Acquire a lock, blocking or non-blocking.
158 When invoked with the blocking argument set to true, do the same thing
161 When invoked with the blocking argument set to false, do not block. If a
171 self._note("%s.acquire(%s): recursive success", self, blocking)
173 rc = self.__block.acquire(blocking)
178 self._note("%s.acquire(%s): initial success", self, blocking)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js 109 // Restart the tests if they're blocking
110 if ( config.blocking ) {
407 config.blocking = false;
411 config.blocking = false;
418 config.blocking = true;
440 blocking: true,
499 blocking: false,
681 config.blocking = false;
855 if ( config.autorun && !config.blocking ) {
863 while ( config.queue.length && !config.blocking ) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.cpp 470 ASSERT(m_pendingSheetType < Blocking);
471 addPendingSheet(Blocking);
510 // Document::removePendingSheet() triggers the style selector recalc for blocking sheets.
537 addPendingSheet(Blocking);
545 addPendingSheet(Blocking);
609 bool blocking = mediaQueryMatches && !m_owner->isAlternate(); local
610 addPendingSheet(blocking ? Blocking : NonBlocking);
613 FetchRequest request = builder.build(blocking);
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CameraOps.java 38 import com.android.ex.camera2.blocking.BlockingCameraManager;
39 import com.android.ex.camera2.blocking.BlockingCameraManager.BlockingOpenException;
40 import com.android.ex.camera2.blocking.BlockingStateListener;
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingStateListener.java 16 package com.android.ex.camera2.blocking;
32 * A camera device listener that implements blocking operations on state changes.

Completed in 836 milliseconds

12 3 4 5 6