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

1 2 3 4 5 6 7 8 91011

  /external/swiftshader/src/Common/
Resource.cpp 23 blocked = 0;
43 blocked++;
49 blocked--;
71 if(blocked)
89 blocked++;
95 blocked--;
114 if(blocked)
141 if(blocked)
163 if(count == 0 && !blocked)
Resource.hpp 50 volatile int blocked; member in class:sw::Resource
  /external/syslinux/core/thread/
root_thread.c 7 .blocked = NULL,
kill_thread.c 24 block = thread->blocked;
32 thread->blocked = NULL;
timeout.c 26 if ((block = t->blocked) && (timeout = block->timeout)) {
34 t->blocked = NULL;
semaphore.c 41 curr->blocked = █
80 block->thread->blocked = NULL;
  /external/valgrind/drd/tests/
sem_wait.stderr.exp 3 Wait would have blocked
  /packages/apps/Settings/src/com/android/settings/notification/
BlockPreferenceController.java 93 boolean blocked = !isChecked;
97 // It's always safe to override the importance if it's meant to be blocked or if
98 // it was blocked and we are unblocking it.
99 if (blocked || originalImportance == IMPORTANCE_NONE) {
100 final int importance = blocked ? IMPORTANCE_NONE
106 if (mAppRow.banned != blocked) {
107 mAppRow.banned = blocked;
108 mBackend.setNotificationsEnabledForPackage(mAppRow.pkg, mAppRow.uid, !blocked);
112 mChannelGroup.setBlocked(blocked);
115 mAppRow.banned = blocked;
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
sigprocmask.go 23 var blocked bool var
27 // Verify that SIGIO stays blocked on the C thread
30 blocked = C.CheckBlocked() != 0
37 if !blocked {
  /prebuilts/go/linux-x86/misc/cgo/test/
sigprocmask.go 23 var blocked bool var
27 // Verify that SIGIO stays blocked on the C thread
30 blocked = C.CheckBlocked() != 0
37 if !blocked {
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 50 int blocked; member in struct:rfkill_data
83 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
86 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
93 if (new_blocked != rfkill->blocked) {
94 rfkill->blocked = new_blocked;
176 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
177 rfkill->blocked = 1;
179 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
180 rfkill->blocked = 1;
223 return rfkill->blocked;
    [all...]
  /cts/hostsidetests/seccomp/app/
gen_blacklist.py 7 # --blocked app/assets/syscalls_blocked.json
9 # Note that these are just syscalls that explicitly allowed and blocked in CTS
33 # Syscalls that are currently explicitly blocked in CTS
152 parser.add_argument('--blocked', metavar='path/to/json', type=str)
156 blocked = {}
158 blocked[arch] = create_syscall_name_to_number_map(
170 with open(args.blocked, 'w') as f:
172 json.dump(blocked, f, sort_keys=True, indent=2)
  /external/autotest/server/site_tests/power_DeferForFlashrom/
power_DeferForFlashrom.py 170 ('Suspend was blocked for %.2f sec; expected it to be blocked '
181 ('Reboot was blocked for %.2f sec; expected it to be blocked '
  /external/mesa3d/include/c11/
threads_win32.h 95 int blocked;
177 if (cond->blocked == 0) {
182 cond->to_unblock += nsignal = cond->blocked;
183 cond->blocked = 0;
187 cond->blocked--;
189 } else if (cond->blocked > cond->gone) {
192 cond->blocked -= cond->gone;
196 nsignal = cond->to_unblock = cond->blocked;
197 cond->blocked = 0;
200 cond->blocked--
    [all...]
  /packages/apps/TV/src/com/android/tv/parental/
ParentalControlSettings.java 31 /** The rating and all of its sub-ratings are blocked. */
34 /** The rating is blocked but not all of its sub-ratings are blocked. */
37 /** The rating is not blocked. */
70 // Ensure no ratings are blocked for the selected rating system
108 // UNRATED contents should be blocked unless the rating level is none or custom
133 // UNRATED contents should be blocked unless the rating level is none or custom
145 /** Sets the blocked status of a unrated contents. */
146 public boolean setUnratedBlocked(boolean blocked) {
148 if (blocked) {
    [all...]
  /packages/apps/Settings/tests/unit/src/com/android/settings/notification/
ChannelNotificationSettingsTest.java 80 NotificationChannel blocked = local
81 new NotificationChannel("blocked", "blocked", IMPORTANCE_NONE);
82 mNm.createNotificationChannel(blocked);
86 blocked.setImportance(IMPORTANCE_NONE);
88 mTargetContext.getPackageName(), Process.myUid(), blocked); local
92 .putExtra(Settings.EXTRA_CHANNEL_ID, blocked.getId());
101 fail("settings appearing for blocked channel");
  /compatibility/cdd/7_hardware-compatibility/
7_4_data-connectivity.md 42 for a blocked call.
45 for a blocked message.
46 * [C-1-6] MUST implement a blocked numbers management UI, which is opened
49 * [C-1-7] MUST NOT allow secondary users to view or edit the blocked numbers
52 blocking related UI MUST be hidden for secondary users and the blocked list MUST
54 * SHOULD migrate the blocked numbers into the provider when a device updates
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ThreadSnapshot.java 41 public boolean blocked; field in class:ThreadSnapshot
81 this.blocked = that.blocked;
  /external/webrtc/talk/app/webrtc/test/
fakedatachannelprovider.h 93 // Set true to emulate the SCTP stream being blocked by congestion control.
94 void set_send_blocked(bool blocked) {
95 send_blocked_ = blocked;
96 if (!blocked) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarIconController.java 105 protected void onIconAdded(int index, String slot, boolean blocked,
107 StatusIconDisplayable view = addHolder(index, slot, blocked, holder);
162 protected void onIconAdded(int index, String slot, boolean blocked,
164 StatusIconDisplayable view = addHolder(index, slot, blocked, holder);
235 protected void onIconAdded(int index, String slot, boolean blocked,
237 addHolder(index, slot, blocked, holder);
240 protected StatusIconDisplayable addHolder(int index, String slot, boolean blocked,
244 return addIcon(index, slot, blocked, holder.getIcon());
257 protected StatusBarIconView addIcon(int index, String slot, boolean blocked,
259 StatusBarIconView view = onCreateStatusBarIconView(slot, blocked);
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
netpoll_windows.go 89 mp.blocked = true
92 mp.blocked = false
100 mp.blocked = false
115 mp.blocked = true
118 mp.blocked = false
129 mp.blocked = false
  /prebuilts/go/linux-x86/src/runtime/
netpoll_windows.go 89 mp.blocked = true
92 mp.blocked = false
100 mp.blocked = false
115 mp.blocked = true
118 mp.blocked = false
129 mp.blocked = false
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
UpdateDestinationBlockedAction.java 79 final String destination, final boolean blocked, final String conversationId,
85 new UpdateDestinationBlockedAction(destination, blocked, conversationId,
93 private static final String KEY_BLOCKED = "blocked";
96 final String destination, final boolean blocked, final String conversationId,
101 actionParameters.putBoolean(KEY_BLOCKED, blocked);
  /external/eigen/Eigen/src/Cholesky/
LLT_LAPACKE.h 67 static Index blocked(MatrixType& m) \
78 static Index blocked(MatrixType& m) \
  /external/eigen/lapack/
cholesky.cpp 29 if(UPLO(*uplo)==UP) ret = int(internal::llt_inplace<Scalar, Upper>::blocked(A));
30 else ret = int(internal::llt_inplace<Scalar, Lower>::blocked(A));

Completed in 469 milliseconds

1 2 3 4 5 6 7 8 91011