Searched defs:status (Results 1 - 25 of 41) sorted by relevance

12

/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/tsp/
H A DPKIStatus.java72 private final int status; field in class:PKIStatus
73 PKIStatus(int status) { argument
74 this.status = status;
78 * @return int value of the status
81 return status;
84 public static PKIStatus getInstance(int status) { argument
86 if (status == curStatus.status) {
H A DPKIStatusInfo.java40 * status PKIStatus,
48 private final PKIStatus status; field in class:PKIStatusInfo
56 this.status = pKIStatus;
65 res.append(status);
85 return status;
96 ASN1Integer.getInstance(), // status
106 values[0] = BigInteger.valueOf(psi.status.getStatus())
H A DTimeStampResp.java32 * status PKIStatusInfo,
39 private final PKIStatusInfo status; field in class:TimeStampResp
43 public TimeStampResp(PKIStatusInfo status, ContentInfo timeStampToken) { argument
44 this.status = status;
52 res.append(status);
60 * @return Returns the status.
63 return status;
74 PKIStatusInfo.ASN1, // status
91 values[0] = resp.status;
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cmp/
H A DPKIStatusInfo.java17 DERInteger status; field in class:PKIStatusInfo
46 this.status = DERInteger.getInstance(seq.getObjectAt(0));
71 * @param status
73 public PKIStatusInfo(int status) argument
75 this.status = new DERInteger(status);
79 * @param status
83 int status,
86 this.status = new DERInteger(status);
82 PKIStatusInfo( int status, PKIFreeText statusString) argument
90 PKIStatusInfo( int status, PKIFreeText statusString, PKIFailureInfo failInfo) argument
[all...]
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DSysexMessage.java52 * if this exception throw out, the value of wrong status byte
57 // sound.09=Invalid status byte for sysex message: {0}
64 public void setMessage(int status, byte[] data, int length) throws InvalidMidiDataException { argument
67 * if this exception throw out, the value of wrong status byte
70 if((status != SysexMessage.SPECIAL_SYSTEM_EXCLUSIVE) &&
71 (status != SysexMessage.SYSTEM_EXCLUSIVE)) {
72 // sound.09=Invalid status byte for sysex message: {0}
74 status));
81 bt[0] = (byte) status;
H A DShortMessage.java113 protected final int getDataLength(int status) argument
123 * value of status from 496 up to 511, from 752 up to 767 and so on,
125 * first lap. This method don't throw out exception with value of status
127 * - value of status equals 240 -- throw out exception;
134 if (status < 0) {
135 // sound.04=Invalid status byte: {0}
136 throw new InvalidMidiDataException(Messages.getString("sound.04", status)); //$NON-NLS-1$
138 if (((status % 256) >= 0) && ((status % 256) <= 127)) {
139 // sound.04=Invalid status byt
171 setMessage(int status) argument
182 setMessage(int status, int data1, int data2) argument
[all...]
/dalvik/vm/jdwp/
H A DJdwpConstants.c217 const char* dvmJdwpSuspendStatusStr(enum JdwpSuspendStatus status) argument
219 switch (status) {
229 const char* dvmJdwpThreadStatusStr(enum JdwpThreadStatus status) argument
231 switch (status) {
/dalvik/dx/src/junit/runner/
H A DTestRunListener.java9 /* test status constants*/
18 public void testFailed(int status, String testName, String trace); argument
H A DBaseTestRunner.java73 public abstract void testFailed(int status, Test test, Throwable t); argument
197 * Clears the status message.
/dalvik/libcore/luni/src/test/java/junit/runner/
H A DTestRunListener.java9 /* test status constants*/
18 public void testFailed(int status, String testName, String trace); argument
H A DBaseTestRunner.java73 public abstract void testFailed(int status, Test test, Throwable t); argument
197 * Clears the status message.
/dalvik/vm/native/
H A Djava_lang_Runtime.c46 int status = args[0]; local
51 (*gDvm.exitHook)(status); // not expected to return
55 LOGD("Calling exit(%d)\n", status);
56 exit(status);
H A Ddalvik_system_Zygote.c49 int status; local
51 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
52 /* Log process-death status that we care about. In general it is not
59 if (WIFEXITED(status)) {
60 if (WEXITSTATUS(status)) {
62 (int) pid, WEXITSTATUS(status));
67 (int) pid, WEXITSTATUS(status));
70 } else if (WIFSIGNALED(status)) {
71 if (WTERMSIG(status) != SIGKILL) {
74 (int) pid, WTERMSIG(status));
407 int status; local
[all...]
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/
H A DSSLEngineResult.java29 private final SSLEngineResult.Status status; field in class:SSLEngineResult
44 * @param status
47 * the status of the current handshake
53 * if {@code status} or {@code handshakeStatus} is {@code null},
58 public SSLEngineResult(SSLEngineResult.Status status, argument
61 if (status == null) {
62 throw new IllegalArgumentException("status is null");
73 this.status = status;
86 return status;
[all...]
/dalvik/dx/src/junit/textui/
H A DTestRunner.java92 public void testFailed(int status, Test test, Throwable t) { argument
/dalvik/libcore/icu/src/main/native/
H A DBreakIteratorInterface.c9 * state, so we don't set the thread status to THREAD_NATIVE when executing
39 UErrorCode status = U_ZERO_ERROR; local
43 UBreakIterator *iter = ubrk_open(UBRK_CHARACTER, localeChars, NULL, 0, &status);
47 if ( icu4jni_error(env, status) != FALSE) {
56 UErrorCode status = U_ZERO_ERROR; local
62 UBreakIterator *iter = ubrk_open(type, localeChars, NULL, 0, &status);
66 if ( icu4jni_error(env, status) != FALSE) {
75 UErrorCode status = U_ZERO_ERROR; local
81 UBreakIterator *iter = ubrk_open(type, localeChars, NULL, 0, &status);
85 if ( icu4jni_error(env, status) !
94 UErrorCode status = U_ZERO_ERROR; local
120 UErrorCode status = U_ZERO_ERROR; local
137 UErrorCode status = U_ZERO_ERROR; local
[all...]
H A DCollationInterface.c100 UErrorCode status = U_ZERO_ERROR; local
103 &status);
104 if (icu4jni_error(env, status) != FALSE){
126 UErrorCode status = U_ZERO_ERROR; local
133 result = (jint)(ucol_openElements(collator, srcstr, srclength, &status));
136 icu4jni_error(env, status);
175 UErrorCode status = U_ZERO_ERROR; local
177 if(U_FAILURE(status)){
178 icu4jni_error(env, status);
180 return (jint)ucol_getAttribute(collator,UCOL_NORMALIZATION_MODE,&status);
195 UErrorCode status = U_ZERO_ERROR; local
328 UErrorCode status = U_ZERO_ERROR; local
347 UErrorCode status = U_ZERO_ERROR; local
374 UErrorCode status = U_ZERO_ERROR; local
404 UErrorCode status = U_ZERO_ERROR; local
433 UErrorCode status = U_ZERO_ERROR; local
465 UErrorCode status = U_ZERO_ERROR; local
491 UErrorCode status = U_ZERO_ERROR; local
493 &status); local
510 UErrorCode status = U_ZERO_ERROR; local
528 UErrorCode status = U_ZERO_ERROR; local
[all...]
H A DRegExInterface.cpp42 static void throwPatternSyntaxException(JNIEnv* env, UErrorCode status, argument
49 jstring message = env->NewStringUTF(u_errorName(status));
55 static void throwRuntimeException(JNIEnv* env, UErrorCode status) argument
57 jniThrowException(env, "java/lang/RuntimeException", u_errorName(status));
79 UErrorCode status = U_ZERO_ERROR; local
86 data->regex = uregex_open(&EMPTY_STRING, -1, flags, &error, &status);
90 &status);
94 if (!U_SUCCESS(status)) {
96 throwPatternSyntaxException(env, status, pattern, error);
105 UErrorCode status local
120 UErrorCode status = U_ZERO_ERROR; local
153 UErrorCode status = U_ZERO_ERROR; local
166 UErrorCode status = U_ZERO_ERROR; local
179 UErrorCode status = U_ZERO_ERROR; local
191 UErrorCode status = U_ZERO_ERROR; local
203 UErrorCode status = U_ZERO_ERROR; local
216 UErrorCode status = U_ZERO_ERROR; local
236 UErrorCode status = U_ZERO_ERROR; local
245 UErrorCode status = U_ZERO_ERROR; local
255 UErrorCode status = U_ZERO_ERROR; local
266 UErrorCode status = U_ZERO_ERROR; local
275 UErrorCode status = U_ZERO_ERROR; local
286 UErrorCode status = U_ZERO_ERROR; local
295 UErrorCode status = U_ZERO_ERROR; local
305 UErrorCode status = U_ZERO_ERROR; local
315 UErrorCode status = U_ZERO_ERROR; local
325 UErrorCode status = U_ZERO_ERROR; local
[all...]
/dalvik/libcore/luni/src/test/java/com/google/coretests/
H A DStatTestRunner.java127 public void testFailed(int status, Test test, Throwable t) { argument
/dalvik/libcore/luni/src/test/java/junit/textui/
H A DTestRunner.java92 public void testFailed(int status, Test test, Throwable t) { argument
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DObjectTest.java41 int status = 0; field in class:ObjectTest
171 status = 0;
223 status += 1;
225 status = -1000;
240 status = 0;
262 assertTrue("Thread woke too early. (status = " + status + ")",
263 status == 0);
269 + status + ")", status
[all...]
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DServerSocketChannelImpl.java50 // status un-init, not initialized.
53 // status after open and before closed.
56 // status closed.
71 int status = SERVER_STATUS_UNINIT; field in class:ServerSocketChannelImpl
89 status = SERVER_STATUS_OPEN;
100 status = SERVER_STATUS_OPEN;
192 status = SERVER_STATUS_CLOSED;
320 channelImpl.status = SERVER_STATUS_CLOSED;
/dalvik/libcore/luni/src/main/java/java/lang/
H A DSecurityManager.java260 * @param status
261 * the status that the virtual machine returns when it is
265 * machine with {@code status}.
268 public void checkExit(int status) { argument
/dalvik/libcore/luni-kernel/src/main/native/
H A Djava_lang_ProcessManager.c49 #define WAIT_STATUS_UNKNOWN (-1) // unknown child status
92 int status; local
94 pid_t pid = wait(&status);
97 // Extract real status.
98 if (WIFEXITED(status)) {
99 status = WEXITSTATUS(status);
100 } else if (WIFSIGNALED(status)) {
101 status = WTERMSIG(status);
[all...]
/dalvik/libcore/nio_char/src/main/java/java/nio/charset/
H A DCharsetDecoder.java99 * internal status consts
131 // the current status
132 private int status; field in class:CharsetDecoder
170 status = INIT;
267 status = FLUSH;
371 * status check
373 if ((status == FLUSH) || (!endOfInput && status == END)) {
397 status = endOfInput ? END : ONGOING;
535 if (status !
[all...]

Completed in 1466 milliseconds

12