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

1 2 3 4

  /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 44 // Changes 'fd' to be blocking/non-blocking. Returns false and sets errno on failure.
46 bool setBlocking(int fd, bool blocking);
NetworkUtilities.cpp 207 bool setBlocking(int fd, bool blocking) {
213 if (!blocking) {
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 74 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
75 IoUtils.setBlocking(getFD(), blocking); local
109 @Override protected void implConfigureBlocking(boolean blocking) throws IOException {
110 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
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 64 Scalar alpha, level3_blocking<Scalar,Scalar>& blocking)
74 ::run(cols, rows, depth, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha, blocking);
99 Scalar alpha, level3_blocking<Scalar,Scalar>& blocking)
110 Index kc = blocking.kc(); // cache block size along the K direction
111 Index mc = (std::min)(rows,blocking.mc()); // cache block size along the M direction
117 ei_declare_aligned_stack_constructed_variable(Scalar, blockA, sizeA, blocking.blockA());
118 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB());
119 ei_declare_aligned_stack_constructed_variable(Scalar, blockW, sizeW, blocking.blockW());
228 Scalar alpha, level3_blocking<Scalar,Scalar>& blocking)
239 Index kc = blocking.kc(); // cache block size along the K directio
    [all...]
TriangularSolverMatrix.h 25 level3_blocking<Scalar,Scalar>& blocking)
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
45 level3_blocking<Scalar,Scalar>& blocking)
57 Index kc = blocking.kc(); // cache block size along the K direction
58 Index mc = (std::min)(size,blocking.mc()); // cache block size along the M direction
64 ei_declare_aligned_stack_constructed_variable(Scalar, blockA, sizeA, blocking.blockA());
65 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB());
66 ei_declare_aligned_stack_constructed_variable(Scalar, blockW, sizeW, blocking.blockW());
187 level3_blocking<Scalar,Scalar>& blocking)
200 Index kc = blocking.kc(); // cache block size along the K directio
    [all...]
GeneralMatrixMatrix.h 33 level3_blocking<RhsScalar,LhsScalar>& blocking,
41 ::run(cols,rows,depth,rhs,rhsStride,lhs,lhsStride,res,resStride,alpha,blocking,info);
46 * => Blocking algorithm following Goto's paper */
59 level3_blocking<LhsScalar,RhsScalar>& blocking,
67 Index kc = blocking.kc(); // cache block size along the K direction
68 Index mc = (std::min)(rows,blocking.mc()); // cache block size along the M direction
69 //Index nc = blocking.nc(); // cache block size along the N direction
87 RhsScalar* blockB = blocking.blockB();
156 ei_declare_aligned_stack_constructed_variable(LhsScalar, blockA, sizeA, blocking.blockA());
157 ei_declare_aligned_stack_constructed_variable(RhsScalar, blockB, sizeB, blocking.blockB())
    [all...]
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); \
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterPort.java 64 public void setBlocking(boolean blocking) {
65 mIsBlocking = blocking;
  /external/libselinux/src/
avc_internal.c 58 int avc_netlink_open(int blocking)
70 if (!blocking && fcntl(fd, F_SETFL, O_NONBLOCK)) {
100 static int avc_netlink_receive(char *buf, unsigned buflen, int blocking)
109 rc = poll(&pfd, 1, (blocking ? -1 : 0));
112 if (rc == 0 && !blocking) {
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 83 * Sets 'fd' to be blocking or non-blocking, according to the state of 'blocking'.
85 public static void setBlocking(FileDescriptor fd, boolean blocking) throws IOException {
88 if (!blocking) {
  /external/iptables/include/libipq/
libipq.h 51 u_int8_t blocking; member in struct:ipq_handle
  /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/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.
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 99 BlockingType blocking(rhs.rows(), rhs.cols(), size);
103 ::run(size, othersize, &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &rhs.coeffRef(0,0), rhs.outerStride(), blocking);

Completed in 536 milliseconds

1 2 3 4