OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:takebyte
(Results
1 - 6
of
6
) sorted by null
/cts/tests/tests/jni/src/android/jni/cts/
InstanceNonce.java
56
public native boolean
takeByte
(byte v);
StaticNonce.java
57
public static native boolean
takeByte
(byte v);
JniInstanceTest.java
157
assertTrue(target.
takeByte
((byte) -99));
JniStaticTest.java
159
assertTrue(StaticNonce.
takeByte
((byte) -99));
/cts/tests/tests/jni/libjnitest/
android_jni_cts_InstanceNonce.c
150
// public native boolean
takeByte
(byte v);
329
{ "
takeByte
", "(B)Z", InstanceNonce_takeByte },
android_jni_cts_StaticNonce.c
166
// public static native boolean
takeByte
(byte v);
345
{ "
takeByte
", "(B)Z", StaticNonce_takeByte },
Completed in 89 milliseconds