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

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/runtime/
os_darwin_arm64.go 9 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
os_plan9_arm.go 13 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
  /packages/apps/Dialer/java/com/android/dialer/blocking/res/values/
strings.xml 18 <!-- Title for dialog which opens when the user needs to migrate to the framework blocking implementation [CHAR LIMIT=30]-->
19 <string name="migrate_blocked_numbers_dialog_title">New, simplified blocking</string>
21 <!-- Body text for dialog which opens when the user needs to migrate to the framework blocking implementation [CHAR LIMIT=NONE]-->
22 <string name="migrate_blocked_numbers_dialog_message">To better protect you, 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>
24 <!-- Positive confirmation button for the dialog which opens when the user needs to migrate to the framework blocking implementation [CHAR LIMIT=NONE]-->
30 <!-- Confirmation dialog title for blocking a number. [CHAR LIMIT=NONE] -->
34 <!-- Confirmation dialog message for blocking a number with visual voicemail active.
40 <!-- Confirmation dialog message for blocking a number with no visual voicemail.
46 <!-- Confirmation dialog message for blocking a number with new filtering enabled.
67 <!-- Text for snackbar to undo blocking a number. [CHAR LIMIT=64] --
    [all...]
  /frameworks/base/core/java/android/net/metrics/
ConnectStats.java 40 /** Latencies of successful blocking connects. TODO: add non-blocking connects latencies. */
48 /** Total count of successful connects done in blocking mode. */
81 // Ignore connect() on non-blocking sockets
105 // On non-blocking TCP sockets, connect() immediately returns EINPROGRESS.
106 // On non-blocking TCP sockets that are connecting, connect() immediately returns EALREADY.
121 builder.append(String.format("%d blocking, ", connectBlockingCount));
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/
CpuMp.h 229 both blocking and non-blocking requests. The non-blocking requests use EFI
241 If WaitEvent is NULL, execution is in blocking mode. The BSP waits until all
242 APs finish or TimeoutInMicroseconds expires. Otherwise, execution is in non-blocking
244 non-blocking mode is requested after the UEFI Event EFI_EVENT_GROUP_READY_TO_BOOT
262 In blocking execution mode, BSP waits until all APs finish or
265 In non-blocking execution mode, BSP is freed to return to the caller and then
267 sequence needs to occur in a non-blocking execution mode:
269 -# The caller that intends to use this MP Services Protocol in non-blocking
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
Stall.h 4 This ppi abstracts the blocking stall service to other agents.
29 The Stall() function provides a blocking stall for at least the number
49 /// This service provides a simple, blocking stall with platform-specific resolution.
  /external/conscrypt/common/src/jni/main/include/
NetworkUtil.h 56 static inline bool setBlocking(int fd, bool blocking) {
58 unsigned long flag = blocking ? 0UL : 1UL;
70 if (!blocking) {
  /external/libvncserver/libvncclient/
tls.h 38 * This should be a non-blocking call. Blocking is handled in sockets.c.
44 * blocking call, until all bytes are written or error returned.
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageConsumer.java 82 * @throws InterruptedException occurs when call is set to be blocking and
98 * @throws InterruptedException occurs when call is set to be blocking and
115 * no longer referred by any task. If false, call is non-blocking
120 * @return Whether the blocking completed properly. If false, there may be a
122 * @throws InterruptedException occurs when call is set to be blocking and
140 * no longer referred by any task. If false, call is non-blocking
143 * @return Whether the blocking completed properly. If false, there may be a
145 * @throws InterruptedException occurs when call is set to be blocking and
162 * no longer referred by any task. If false, call is non-blocking
168 * @return Whether the blocking completed properly. If false, there may be
    [all...]
  /system/bt/osi/include/
semaphore.h 50 // without blocking. If select indicates the fd is writable, the caller may
51 // call |semaphore_post| without blocking. Note that there may be a race
53 // which results in blocking behaviour.
  /external/kernel-headers/original/uapi/asm-generic/
signal-defs.h 7 #define SIG_BLOCK 0 /* for blocking signals */
  /prebuilts/go/darwin-x86/src/cmd/trace/
main.go 22 - net: network blocking profile
23 - sync: synchronization blocking profile
24 - syscall: syscall blocking profile
59 - net: network blocking profile
60 - sync: synchronization blocking profile
61 - syscall: syscall blocking profile
201 <a href="/io">Network blocking profile</a><br>
202 <a href="/block">Synchronization blocking profile</a><br>
203 <a href="/syscall">Syscall blocking profile</a><br>
  /prebuilts/go/darwin-x86/src/runtime/
os_plan9_arm.go 13 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
  /prebuilts/go/linux-x86/src/cmd/trace/
main.go 22 - net: network blocking profile
23 - sync: synchronization blocking profile
24 - syscall: syscall blocking profile
59 - net: network blocking profile
60 - sync: synchronization blocking profile
61 - syscall: syscall blocking profile
201 <a href="/io">Network blocking profile</a><br>
202 <a href="/block">Synchronization blocking profile</a><br>
203 <a href="/syscall">Syscall blocking profile</a><br>
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/DiskIoDxe/
DiskIo.c 297 // Call BlockIo2::Reset() to terminate any in-flight non-blocking I/O requests
378 if (!Subtask->Blocking) {
457 @param Blocking TRUE: Blocking request; FALSE: Non-blocking request.
469 IN BOOLEAN Blocking
486 Subtask->Blocking = Blocking;
487 if (!Blocking) {
517 @param Blocking TRUE: Blocking request; FALSE: Non-blocking request.
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectableChannel.java 68 * <h2>Blocking mode</h2>
70 * A selectable channel is either in <i>blocking</i> mode or in
71 * <i>non-blocking</i> mode. In blocking mode, every I/O operation invoked
72 * upon the channel will block until it completes. In non-blocking mode an I/O
74 * or possibly no bytes at all. The blocking mode of a selectable channel may
77 * <p> Newly-created selectable channels are always in blocking mode.
78 * Non-blocking mode is most useful in conjunction with selector-based
79 * multiplexing. A channel must be placed into non-blocking mode before being
80 * registered with a selector, and may not be returned to blocking mode unti
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 37 * blocking mode of this channel as well as its current set of selection keys.
70 // Blocking mode, protected by regLock
71 boolean blocking = true; field in class:AbstractSelectableChannel
200 if (blocking)
264 // -- Blocking --
268 return blocking;
277 * Adjusts this channel's blocking mode.
279 * <p> If the given blocking mode is different from the current blocking
290 if (blocking == block
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/blocking/
FilteredNumberCompat.java 17 package com.android.dialer.blocking;
47 * Compatibility class to encapsulate logic to switch between call blocking using {@link
50 * referencing columns from either contract class in situations where both blocking solutions may be
67 * framework blocking implementation.
76 * the framework blocking implementation
92 * the framework blocking implementation
124 * android.provider.BlockedNumberContract} blocking, {@code false} otherwise.
133 * android.provider.BlockedNumberContract} blocking or not.
166 * used to strip out any column names that aren't available in every version of number blocking.
268 // Dialer blocking, must be primary use
    [all...]
  /system/tpm/tpm_manager/server/
tpm_manager_service.h 47 // public methods non-blocking while allowing complex implementation details
123 // Blocking implementation of GetTpmStatus that can be executed on the
128 // Blocking implementation of TakeOwnership that can be executed on the
133 // Blocking implementation of RemoveOwnerDependency that can be executed on
145 // Blocking implementation of DefineSpace that can be executed on the
150 // Blocking implementation of DestroySpace that can be executed on the
155 // Blocking implementation of WriteSpace that can be executed on the
160 // Blocking implementation of ReadSpace that can be executed on the
165 // Blocking implementation of LockSpace that can be executed on the
170 // Blocking implementation of ListSpaces that can be executed on th
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
MpService.h 224 both blocking and non-blocking requests. The non-blocking requests use EFI
236 If WaitEvent is NULL, execution is in blocking mode. The BSP waits until all
237 APs finish or TimeoutInMicroSecs expires. Otherwise, execution is in non-blocking
239 non-blocking mode is requested after the UEFI Event EFI_EVENT_GROUP_READY_TO_BOOT
257 In blocking execution mode, BSP waits until all APs finish or
260 In non-blocking execution mode, BSP is freed to return to the caller and then
262 sequence needs to occur in a non-blocking execution mode:
264 -# The caller that intends to use this MP Services Protocol in non-blocking
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_cthread.h 97 if (waitflag) { /* blocking */
100 } else { /* non blocking */
  /external/libhevc/decoder/
ihevcd_job_queue.h 67 IHEVCD_ERROR_T ihevcd_jobq_queue(jobq_t *ps_jobq, void *pv_job, WORD32 job_size, WORD32 blocking);
68 IHEVCD_ERROR_T ihevcd_jobq_dequeue(jobq_t *ps_jobq, void *pv_job, WORD32 job_size, WORD32 blocking);
  /external/v8/src/
locked-queue.h 15 // on "Simple, Fast, and Practical Non-Blocking and Blocking Concurrent Queue
  /frameworks/wilhelm/tests/sandbox/
getch.c 2 C non-blocking keyboard input
3 http://stackoverflow.com/questions/448944/c-non-blocking-keyboard-input
  /libcore/ojluni/src/main/native/
IOUtil.c 74 configureBlocking(int fd, jboolean blocking)
77 int newflags = blocking ? (flags & ~O_NONBLOCK) : (flags | O_NONBLOCK);
84 jobject fdo, jboolean blocking)
86 if (configureBlocking(fdval(env, fdo), blocking) < 0)
87 JNU_ThrowIOExceptionWithLastError(env, "Configure blocking failed");
91 IOUtil_makePipe(JNIEnv *env, jobject this, jboolean blocking)
99 if (blocking == JNI_FALSE) {
102 JNU_ThrowIOExceptionWithLastError(env, "Configure blocking failed");

Completed in 749 milliseconds

12 3 4 5 6 7 8 91011>>