OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:condition
(Results
476 - 500
of
1405
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/raid/
md_k.h
180
#define __wait_event_lock_irq(wq,
condition
, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (
condition
) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182
#define wait_event_lock_irq(wq,
condition
, lock, cmd) do { if (
condition
) break; __wait_event_lock_irq(wq,
condition
, lock, cmd); } while (0)
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/raid/
md_k.h
180
#define __wait_event_lock_irq(wq,
condition
, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (
condition
) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182
#define wait_event_lock_irq(wq,
condition
, lock, cmd) do { if (
condition
) break; __wait_event_lock_irq(wq,
condition
, lock, cmd); } while (0)
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/raid/
md_k.h
180
#define __wait_event_lock_irq(wq,
condition
, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (
condition
) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182
#define wait_event_lock_irq(wq,
condition
, lock, cmd) do { if (
condition
) break; __wait_event_lock_irq(wq,
condition
, lock, cmd); } while (0)
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/raid/
md_k.h
180
#define __wait_event_lock_irq(wq,
condition
, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (
condition
) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
182
#define wait_event_lock_irq(wq,
condition
, lock, cmd) do { if (
condition
) break; __wait_event_lock_irq(wq,
condition
, lock, cmd); } while (0)
/external/chromium_org/chrome/browser/resources/safe_browsing/
malware_block_v2.js
46
var
condition
= templateData.trialType;
47
if (
condition
== 'cond2MalwareNoBrand' ||
48
condition
== 'cond4PhishingNoBrand') {
50
} else if (
condition
== 'cond5MalwareOneStep' ||
51
condition
== 'cond6PhishingOneStep') {
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java
211
//
condition
. if the list is empty (null) then "we're good".
291
String
condition
;
local
292
switch (entry.
condition
) {
294
condition
= "a CRASH";
297
condition
= "an ANR";
300
condition
= "an unknown error";
305
condition
, entry.shortMsg));
306
if (entry.
condition
== ActivityManager.ProcessErrorStateInfo.CRASHED) {
354
return (info.
condition
== peOther.info.
condition
)
[
all
...]
/frameworks/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/
AppLaunchTest.java
224
String
condition
;
local
225
switch (entry.
condition
) {
227
condition
= "a CRASH";
230
condition
= "an ANR";
233
condition
= "an unknown error";
238
condition
, entry.shortMsg));
239
if (entry.
condition
== ActivityManager.ProcessErrorStateInfo.CRASHED) {
287
return (info.
condition
== peOther.info.
condition
)
308
code += info.
condition
;
[
all
...]
/prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar
/external/chromium_org/chrome/browser/extensions/
extension_test_notification_observer.cc
90
const base::Callback<bool(void)>&
condition
) {
91
if (
condition
.Run())
96
const base::Callback<bool(void)>&
condition
,
98
if (
condition
.Run())
105
base::Bind(&MaybeQuit, base::Unretained(runner.get()),
condition
));
110
const base::Callback<bool(void)>&
condition
,
114
WaitForCondition(
condition
, ¬ification_set);
/external/chromium_org/third_party/mesa/src/src/glsl/
lower_vec_index_to_cond_assign.cpp
103
/* Generate a single comparison
condition
"mask" for all of the components
170
if (ir->
condition
)
171
ir->
condition
= convert_vec_index_to_cond_assign(ir->
condition
);
203
/* Generate a single comparison
condition
"mask" for all of the components
229
/* If the original assignment has a
condition
, respect that original
230
*
condition
! This is acomplished by wrapping the new conditional
231
* assignments in an if-statement that uses the original
condition
.
233
if (ir->
condition
!= NULL) {
234
/* No need to clone the
condition
because the IR that it hangs on i
[
all
...]
/external/mesa3d/src/glsl/
lower_vec_index_to_cond_assign.cpp
103
/* Generate a single comparison
condition
"mask" for all of the components
170
if (ir->
condition
)
171
ir->
condition
= convert_vec_index_to_cond_assign(ir->
condition
);
203
/* Generate a single comparison
condition
"mask" for all of the components
229
/* If the original assignment has a
condition
, respect that original
230
*
condition
! This is acomplished by wrapping the new conditional
231
* assignments in an if-statement that uses the original
condition
.
233
if (ir->
condition
!= NULL) {
234
/* No need to clone the
condition
because the IR that it hangs on i
[
all
...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
in_generator.py
53
def wrap_with_condition(self, string,
condition
):
54
if not
condition
:
56
return "#if ENABLE(%(
condition
)s)\n%(string)s\n#endif" % { '
condition
' :
condition
, 'string' : string }
/external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommand.java
86
* Returns the specific
condition
of the <code>error</code> or <tt>null</tt> if the
89
* @param error the error the get the specific
condition
from.
90
* @return the specific
condition
of this error, or null if it doesn't have
96
for (SpecificErrorCondition
condition
: SpecificErrorCondition.values()) {
97
if (error.getExtension(
condition
.toString(),
99
return
condition
;