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

12 3 4 5 6 7 8 91011>>

  /external/protobuf/java/src/main/java/com/google/protobuf/
BlockingRpcChannel.java 34 * <p>Abstract interface for a blocking RPC channel. {@code BlockingRpcChannel}
35 * is the blocking equivalent to {@link RpcChannel}.
43 * {@code callBlockingMethod()} is the blocking equivalent to
  /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);
  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 75 // make non-blocking mode only during read. This allows supporting time-out for read
122 // in blocking mode, zero read mean's peer closed.
123 // in non-blocking mode, select said that there is data. so it should not happen
134 fcntl(mSocket, F_SETFL, flOriginal); // now blocking again
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 25 level3_blocking<Scalar,Scalar>& blocking)
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
45 level3_blocking<Scalar,Scalar>& blocking);
52 level3_blocking<Scalar,Scalar>& blocking)
64 Index kc = blocking.kc(); // cache block size along the K direction
65 Index mc = (std::min)(size,blocking.mc()); // cache block size along the M direction
71 ei_declare_aligned_stack_constructed_variable(Scalar, blockA, sizeA, blocking.blockA());
72 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB());
73 ei_declare_aligned_stack_constructed_variable(Scalar, blockW, sizeW, blocking.blockW());
193 level3_blocking<Scalar,Scalar>& blocking);
    [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 */
60 level3_blocking<LhsScalar,RhsScalar>& blocking,
68 Index kc = blocking.kc(); // cache block size along the K direction
69 Index mc = (std::min)(rows,blocking.mc()); // cache block size along the M direction
70 //Index nc = blocking.nc(); // cache block size along the N direction
88 RhsScalar* blockB = blocking.blockB();
157 ei_declare_aligned_stack_constructed_variable(LhsScalar, blockA, sizeA, blocking.blockA());
158 ei_declare_aligned_stack_constructed_variable(RhsScalar, blockB, sizeB, blocking.blockB())
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 24 * Note - this method will be run on a background thread so blocking I/O is safe.
38 * Note - this method will be run on a background thread so blocking I/O is safe.
53 * Note - this method will be run on the main thread so it should not perform blocking operations and should
71 * Note - this method will be run on the main thread so it should not perform blocking operations and should
  /external/netperf/
nettest_sctp.h 34 int non_blocking; /* run the test in non-blocking mode */
48 int non_blocking; /* run the test in non-blocking mode */
80 int non_blocking; /* run the test in non-blocking mode */
93 int non_blocking; /* run the test in non-blocking mode */
  /external/valgrind/none/tests/linux/
blockfault.c 13 /* Blocking a fault, ie SIGSEGV, won't work, and is the same as having
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingCaptureCallback.java 16 package com.android.ex.camera2.blocking;
29 * A camera capture listener that implements blocking operations on state changes for a
92 * Create a blocking capture listener without forwarding the capture listener invocations
100 * Create a blocking capture listener; forward original listener invocations
  /frameworks/wilhelm/src/android/
CallbackProtector.cpp 121 " blocking destroy requested by thread %p tid %d",
125 SL_LOGV("Callback protector detected in-progress callback during blocking destroy");
142 " non-blocking destroy requested by thread %p tid %d",
146 SL_LOGV("Callback protector detected in-progress callback during non-blocking destroy");
  /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
  /external/libavc/common/
ih264_list.c 414 * @param[in] blocking
415 * To signal if the write is blocking or non-blocking.
425 IH264_ERROR_T ih264_list_queue(list_t *ps_list, void *pv_buf, WORD32 blocking)
463 if(blocking)
490 * buffer is being passed. If it is a blocking call and if there is no new buf
503 * @param[in] blocking
504 * To signal if the read is blocking or non-blocking.
514 IH264_ERROR_T ih264_list_dequeue(list_t *ps_list, void *pv_buf, WORD32 blocking)
    [all...]
ih264_list.h 90 IH264_ERROR_T ih264_list_queue(list_t *ps_list, void *pv_buf, WORD32 blocking);
91 IH264_ERROR_T ih264_list_dequeue(list_t *ps_list, void *pv_buf, WORD32 blocking);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl.h 80 # define F_SETLK 6 /* Set record locking info (non-blocking). */
81 # define F_SETLKW 7 /* Set record locking info (blocking). */
84 # define F_SETLK64 6 /* Set record locking info (non-blocking). */
85 # define F_SETLKW64 7 /* Set record locking info (blocking). */
89 # define F_SETLK 6 /* Set record locking info (non-blocking). */
90 # define F_SETLKW 7 /* Set record locking info (blocking). */
93 # define F_SETLK F_SETLK64 /* Set record locking info (non-blocking).*/
94 # define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */
97 # define F_SETLK64 13 /* Set record locking info (non-blocking). */
98 # define F_SETLKW64 14 /* Set record locking info (blocking). *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 84 # define F_SETLK 6 /* Set record locking info (non-blocking). */
85 # define F_SETLKW 7 /* Set record locking info (blocking). */
88 # define F_SETLK64 6 /* Set record locking info (non-blocking). */
89 # define F_SETLKW64 7 /* Set record locking info (blocking). */
93 # define F_SETLK 6 /* Set record locking info (non-blocking). */
94 # define F_SETLKW 7 /* Set record locking info (blocking). */
97 # define F_SETLK F_SETLK64 /* Set record locking info (non-blocking).*/
98 # define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */
101 # define F_SETLK64 13 /* Set record locking info (non-blocking). */
102 # define F_SETLKW64 14 /* Set record locking info (blocking). *
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_queue.py 20 # The sleep isn't necessary, but is intended to give the blocking
21 # function in the main thread a chance at actually blocking before
23 # tests wait in their blocking functions, those tests will fail.
25 # sleep here (I aimed at 10 seconds for blocking functions --
34 # triggers the release. Returns the result of the blocking function. Caution:
55 self.fail("blocking function '%r' appeared not to block" %
121 # Test a blocking put
138 # Test a blocking get
235 # Test a failing non-blocking put.
250 # Test a failing blocking pu
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_queue.py 20 # The sleep isn't necessary, but is intended to give the blocking
21 # function in the main thread a chance at actually blocking before
23 # tests wait in their blocking functions, those tests will fail.
25 # sleep here (I aimed at 10 seconds for blocking functions --
34 # triggers the release. Returns the result of the blocking function. Caution:
55 self.fail("blocking function '%r' appeared not to block" %
121 # Test a blocking put
138 # Test a blocking get
235 # Test a failing non-blocking put.
250 # Test a failing blocking pu
    [all...]
  /art/runtime/
thread_state.h 37 kWaitingInMainDebuggerLoop, // WAITING TS_WAIT blocking/reading/processing debugger events
41 kWaitingInMainSignalCatcherLoop, // WAITING TS_WAIT blocking/reading/processing signals
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
CameraSessionUtils.java 30 import com.android.ex.camera2.blocking.BlockingCaptureCallback;
31 import com.android.ex.camera2.blocking.BlockingSessionCallback;
52 * A blocking listener class for synchronously opening and configuring sessions.
62 * This method is blocking, and will time out after
92 * A blocking listener class for synchronously capturing and results with a session.
104 * This method is blocking, and will time out after
159 * passed as the {@code listener} argument. This method is blocking, and will time out after
199 * passed as the {@code listener} argument. This method is blocking, and will time out after
  /external/boringssl/src/ssl/test/
packeted_bio.h 33 // blocking datagram socket. The resulting BIO, on |BIO_read|, may simulate a
40 // blocking mode.
  /external/eigen/doc/
TopicLinearAlgebraDecompositions.dox 38 <td>Blocking, Implicit MT</td>
62 <td>Blocking</td>
74 <td><em>Soon: blocking</em></td>
98 <td>Blocking</td>
110 <td><em>Soon: blocking</em></td>
210 <td><em>Soon: blocking</em></td>
222 <td><em>Soon: blocking</em></td>
247 <dt><b>Blocking</b></dt>
  /external/libavc/encoder/
ih264e_deblk.h 60 * @brief This function computes blocking strength for an mb
63 * This function computes blocking strength for an mb
  /external/libmpeg2/common/
impeg2_job_queue.h 69 IV_API_CALL_STATUS_T impeg2_jobq_queue(jobq_t *ps_jobq, void *pv_job, WORD32 job_size, WORD32 blocking, WORD32 lock);
70 IV_API_CALL_STATUS_T impeg2_jobq_dequeue(jobq_t *ps_jobq, void *pv_job, WORD32 job_size, WORD32 blocking, WORD32 lock);
  /docs/source.android.com/src/devices/audio/
avoiding_pi.jd 155 non-blocking and bounded blocking variants of the mutex lock
199 Use non-blocking single-reader single-writer
223 is basically just a non-blocking single-reader single-writer FIFO
249 <h2 id="nonBlockingAlgorithms">Non-blocking algorithms</h2>
252 <a href="http://en.wikipedia.org/wiki/Non-blocking_algorithm">Non-blocking algorithms</a>
259 Starting in Android 4.2, you can find our non-blocking,
281 general-purpose. Non-blocking algorithms are notorious for being
289 use non-blocking algorithms or reference a non-Android open source library.
293 We have published an example non-blocking FIFO implementation that is specifically designed fo
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/api/
transfer.cpp 138 clEnqueueReadBuffer(cl_command_queue q, cl_mem obj, cl_bool blocking,
163 clEnqueueWriteBuffer(cl_command_queue q, cl_mem obj, cl_bool blocking,
188 clEnqueueReadBufferRect(cl_command_queue q, cl_mem obj, cl_bool blocking,
219 clEnqueueWriteBufferRect(cl_command_queue q, cl_mem obj, cl_bool blocking,
300 clEnqueueReadImage(cl_command_queue q, cl_mem obj, cl_bool blocking,
330 clEnqueueWriteImage(cl_command_queue q, cl_mem obj, cl_bool blocking,
440 clEnqueueMapBuffer(cl_command_queue q, cl_mem obj, cl_bool blocking,
451 *q, flags, blocking, { offset }, { size });
464 clEnqueueMapImage(cl_command_queue q, cl_mem obj, cl_bool blocking,
476 *q, flags, blocking, origin, region)
    [all...]

Completed in 304 milliseconds

12 3 4 5 6 7 8 91011>>