HomeSort by relevance Sort by last modified time
    Searched full:blocking (Results 126 - 150 of 2438) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/autotest/client/cros/chameleon/
audio_widget_arc.py 120 def start_playback(self, path, blocking=False):
124 @param blocking: Blocks this call until playback finishes.
126 @raises: NotImplementedError if blocking is True.
129 if blocking:
131 'Blocking playback on ARC is not supported.')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
android_app_backend.py 47 # app to become ready, otherwise "blocking=True" is used as a fall back.
49 # whether the "blocking=True" fall back is sufficient.
53 blocking=not has_ready_predicate,
86 blocking=True)
97 blocking=True)
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular_BLAS.h 53 const Scalar* rhs, Index rhsStride, Scalar* res, Index resStride, Scalar alpha, level3_blocking<Scalar, Scalar>& blocking) \
57 ::run(size,depth,lhs,lhsStride,rhs,rhsStride,res,resStride,alpha,blocking); \
63 ::run(size,depth,lhs,lhsStride,rhs,rhsStride,res,resStride,alpha,blocking); \
84 const EIGTYPE* /*rhs*/, Index /*rhsStride*/, EIGTYPE* res, Index resStride, EIGTYPE alpha, level3_blocking<EIGTYPE, EIGTYPE>& /*blocking*/) \
105 const EIGTYPE* /*rhs*/, Index /*rhsStride*/, EIGTYPE* res, Index resStride, EIGTYPE alpha, level3_blocking<EIGTYPE, EIGTYPE>& /*blocking*/) \
  /external/ltp/utils/sctp/lib/
connectx.c 149 /* Succeeded immediately, or initiated on non-blocking
162 * non-blocking sockets. So if the application wants the association
163 * id and the socket is non-blocking, we can't really do anything.
167 * that if the socket is blocking */
173 /* Socket is non-blocking. Fail */
  /external/selinux/libselinux/src/
avc_internal.c 58 int avc_netlink_open(int blocking)
69 if (!blocking && fcntl(fd, F_SETFL, O_NONBLOCK)) {
99 static int avc_netlink_receive(void *buf, unsigned buflen, int blocking)
108 rc = poll(&pfd, 1, (blocking ? -1 : 0));
111 if (rc == 0 && !blocking) {
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsConfigImplBase.java 44 * value storage. Synchronous blocking call.
56 * value storage. Synchronous blocking call.
69 * from which the master value is derived. Synchronous blocking call.
83 * from which the master value is derived. Synchronous blocking call.
97 * value). Asynchronous non-blocking call.
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsConfig.aidl 33 * value storage. Synchronous blocking call.
42 * value storage. Synchronous blocking call.
52 * from which the master value is derived. Synchronous blocking call.
63 * from which the master value is derived. Synchronous blocking call.
74 * value). Asynchronous non-blocking call.
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
service_endpoint.h 27 // Blocking modes for service endpoint. Controls whether the epoll set is in
28 // blocking mode or not for message receive.
93 bool blocking = kDefaultBlocking);
98 const std::string& endpoint_path, bool blocking = kDefaultBlocking);
118 Endpoint(const std::string& endpoint_path, bool blocking,
  /art/runtime/base/
scoped_flock.h 33 // 1) a non-blocking Init call, or
46 // created at the same path) between attempts to lock it. In blocking mode,
47 // locking will be retried if the file changed. In non-blocking mode, false
  /cts/tests/tests/permission/src/android/permission/cts/
Camera2PermissionTest.java 19 import static com.android.ex.camera2.blocking.BlockingStateCallback.*;
30 import com.android.ex.camera2.blocking.BlockingCameraManager;
31 import com.android.ex.camera2.blocking.BlockingStateCallback;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/MpServicesOnFrameworkMpServicesThunk/
MpServicesOnFrameworkMpServicesThunk.h 200 If it is NULL, then execute in blocking mode.
201 If it is not NULL, then execute in non-blocking mode.
208 @retval EFI_SUCCESS In blocking mode, all APs have finished before the timeout expired.
209 @retval EFI_SUCCESS In non-blocking mode, function has been dispatched to all enabled APs.
213 @retval EFI_TIMEOUT In blocking mode, The timeout expired before all enabled APs have finished.
239 If it is NULL, then execute in blocking mode.
240 If it is not NULL, then execute in non-blocking mode.
245 In blocking mode, it is ignored.
247 @retval EFI_SUCCESS In blocking mode, specified AP has finished before the timeout expires.
248 @retval EFI_SUCCESS In non-blocking mode, function has been dispatched to specified AP.
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
accept.c 23 @param [in] bBlockingAllowed TRUE if this is a blocking call
62 // Determine if the operation is blocking
136 Non blocking version of ::accept.
  /external/curl/docs/libcurl/
curl_easy_perform.3 24 curl_easy_perform - perform a blocking file transfer
36 \fIcurl_easy_perform(3)\fP performs the entire request in a blocking manner
37 and returns when done, or if it failed. For non-blocking behavior, see
  /external/libchrome/dbus/
dbus_statistics.h 66 // received calls, and |blocking| to the number of sent blocking calls for
73 int* blocking);
  /external/libpcap/
pcap_get_selectable_fd.3pcap 42 to wait for it to be possible to read packets without blocking, if such
57 Note that a descriptor on which a read can be done without blocking may,
91 in non-blocking mode, and must arrange that the
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
PromptHelper.java 85 * Request a prompt response from parent. This is a blocking call until user
116 * Request a string response from parent. This is a blocking call until user
131 * Request a boolean response from parent. This is a blocking call until user
  /hardware/interfaces/tests/msgq/1.0/default/
TestMsgQ.cpp 103 ALOGE("Blocking read fails");
115 ALOGE("Blocking read fails");
132 ALOGE("Blocking read fails");
  /libcore/ojluni/src/main/java/sun/nio/ch/
ChannelInputStream.java 48 // useless because we throw if the channel is non-blocking!. It would only make sense
49 // if it's called on a blocking channel (but we're asked to make it non-blocking before
  /libcore/ojluni/src/main/native/
LinuxWatchService.c 107 (JNIEnv* env, jclass clazz, jint fd, jboolean blocking)
111 if ((blocking == JNI_FALSE) && !(flags & O_NONBLOCK))
113 else if ((blocking == JNI_TRUE) && (flags & O_NONBLOCK))
  /packages/apps/Dialer/java/com/android/dialer/blocking/
MigrateBlockedNumbersDialogFragment.java 17 package com.android.dialer.blocking;
26 import com.android.dialer.blocking.BlockedNumbersMigrator.Listener;
31 * android.provider.BlockedNumberContract} for blocking.
  /packages/apps/Dialer/java/com/android/dialer/blocking/res/values-en-rAU/
strings.xml 20 <string name="migrate_blocked_numbers_dialog_title" msgid="7823962296457673809">"New, simplified blocking"</string>
21 <string name="migrate_blocked_numbers_dialog_message" msgid="8309736147266462485">"To protect you better, Phone needs to change how blocking works. Your blocked numbers will now stop both calls and texts and may be shared with other apps."</string>
35 <string name="call_blocking_disabled_notification_title" msgid="7211352205255347489">"Call blocking disabled for 48 hours"</string>
  /packages/apps/Dialer/java/com/android/dialer/blocking/res/values-en-rGB/
strings.xml 20 <string name="migrate_blocked_numbers_dialog_title" msgid="7823962296457673809">"New, simplified blocking"</string>
21 <string name="migrate_blocked_numbers_dialog_message" msgid="8309736147266462485">"To protect you better, Phone needs to change how blocking works. Your blocked numbers will now stop both calls and texts and may be shared with other apps."</string>
35 <string name="call_blocking_disabled_notification_title" msgid="7211352205255347489">"Call blocking disabled for 48 hours"</string>
  /packages/apps/Dialer/java/com/android/dialer/blocking/res/values-en-rIN/
strings.xml 20 <string name="migrate_blocked_numbers_dialog_title" msgid="7823962296457673809">"New, simplified blocking"</string>
21 <string name="migrate_blocked_numbers_dialog_message" msgid="8309736147266462485">"To protect you better, Phone needs to change how blocking works. Your blocked numbers will now stop both calls and texts and may be shared with other apps."</string>
35 <string name="call_blocking_disabled_notification_title" msgid="7211352205255347489">"Call blocking disabled for 48 hours"</string>
  /prebuilts/go/darwin-x86/src/context/
example_test.go 55 // This example passes a context with a arbitrary deadline to tell a blocking
77 // This example passes a context with a timeout to tell a blocking function that
80 // Pass a context with a timeout to tell a blocking function that it
  /prebuilts/go/linux-x86/src/context/
example_test.go 55 // This example passes a context with a arbitrary deadline to tell a blocking
77 // This example passes a context with a timeout to tell a blocking function that
80 // Pass a context with a timeout to tell a blocking function that it

Completed in 1031 milliseconds

1 2 3 4 56 7 8 91011>>