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

1 2 3 4

  /external/swiftshader/src/Common/
Resource.cpp 24 blocked = 0;
44 blocked++;
50 blocked--;
72 if(blocked)
90 blocked++;
96 blocked--;
116 if(blocked)
144 if(blocked)
166 if(count == 0 && !blocked)
Resource.hpp 50 volatile int blocked; member in class:sw::Resource
  /external/swiftshader/src/System/
Resource.cpp 24 blocked = 0;
44 blocked++;
50 blocked--;
72 if(blocked)
90 blocked++;
96 blocked--;
116 if(blocked)
144 if(blocked)
166 if(count == 0 && !blocked)
Resource.hpp 50 volatile int blocked; member in class:sw::Resource
  /device/generic/goldfish/network/netmgr/commands/
wifi_command.h 37 Result setBlocked(const char* ifName, bool blocked);
44 AccessPoint() : blocked(false) {}
48 bool blocked; member in struct:WifiCommand::AccessPoint
wifi_command.cpp 199 Result WifiCommand::setBlocked(const char* ifName, bool blocked) {
201 sSetForwardRule[kActionIndex] = blocked ? kAddRule : kDeleteRule;
203 // Do this for both IPv4 and IPv6 to ensure all traffic is blocked/unblocked
211 blocked ? "block" : "unblock");
218 blocked ? "block" : "unblock");
261 interface->second.blocked = true;
270 interface->second.blocked = false;
  /cts/hostsidetests/net/aidl/com/android/cts/net/hostside/
INetworkCallback.aidl 22 void onBlockedStatusChanged(in Network network, boolean 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
166 parser.add_argument('--blocked', metavar='path/to/json', type=str)
170 blocked = {}
172 blocked[arch] = create_syscall_name_to_number_map(
184 with open(args.blocked, 'w') as f:
186 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 109 int blocked;
191 if (cond->blocked == 0) {
196 cond->to_unblock += nsignal = cond->blocked;
197 cond->blocked = 0;
201 cond->blocked--;
203 } else if (cond->blocked > cond->gone) {
206 cond->blocked -= cond->gone;
210 nsignal = cond->to_unblock = cond->blocked;
211 cond->blocked = 0;
214 cond->blocked--
    [all...]
  /external/virglrenderer/src/gallium/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...]
  /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) {
  /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));
  /external/google-breakpad/src/client/solaris/handler/
exception_handler.cc 236 bool blocked = true; local
241 blocked = false;
249 if (blocked)
  /art/compiler/optimizing/
parallel_move_resolver.h 67 int blocked,
86 int AllocateScratchRegister(int blocked, int if_scratch, int register_count, bool* spilled);
187 // Return true if the location is blocked by outstanding moves.
  /external/bcc/tools/
deadlock_detector.py 207 def _unblock(thisnode, blocked, B):
211 if node in blocked:
212 blocked.remove(node)
230 blocked = set() # vertex: blocked from search?
232 blocked.add(startnode)
242 elif nextnode not in blocked:
246 blocked.add(nextnode)
251 _unblock(thisnode, blocked, B)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
merge-request.sh 150 check_duplicates=`$BUGZILLA_CMD query --blocked=$release_metabug --field="cf_fixed_by_commits=$rev_string"`
186 -c "$bugzilla_component" --blocked=$release_metabug \
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
math_utils_test.py 139 blocked = math_utils.block_diagonal([completely_undefined,
143 blocked.get_shape().as_list())
149 blocked.eval(feed_dict={
158 blocked = math_utils.block_diagonal([[[2.]],
162 blocked.get_shape().as_list())
168 blocked.eval(feed_dict={
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
NetworkCallbackTest.java 105 public void onBlockedStatusChanged(Network network, boolean blocked) {
106 setLastCallback(CallbackState.BLOCKED_STATUS, network, blocked);
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
MyService.java 102 public void onBlockedStatusChanged(Network network, boolean blocked) {
104 cb.onBlockedStatusChanged(network, blocked);
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_context.h 121 rbug_block_t blocked; member in struct:rbug_proto_context_info_reply
182 rbug_block_t blocked,
  /cts/tests/app/src/android/app/cts/
Instrumentation_ActivityMonitorTest.java 90 * - when ActivityMonitor.onStartActivity returns null, then the activity start is not blocked.
113 // blocked and there is no monitor hit.
131 * Verifies that when ActivityMonitor.onStartActivity returns non-null, activity start is blocked.
291 boolean blocked) {
292 super(intentFilter, result, blocked);
296 boolean blocked) {
297 super(activityClass, result, blocked);

Completed in 989 milliseconds

1 2 3 4