Searched defs:token (Results 1 - 6 of 6) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DZygoteHooks.java28 private long token; field in class:ZygoteHooks
52 token = nativePreFork();
61 nativePostForkChild(token, debugFlags, isSystemServer, instructionSet);
76 private static native void nativePostForkChild(long token, int debugFlags, argument
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DNegotiateAuthentication.java167 * return the first token.
168 * @returns the token
195 * @param token the token to be fed into <code>negotiator.nextToken()</code>
196 * @returns the token
198 * May happen if the input token is invalid.
200 private byte[] nextToken(byte[] token) throws IOException { argument
201 return negotiator.nextToken(token);
211 // 200 OK. The token can be fed into initSecContext() again to determine
/libcore/ojluni/src/main/java/sun/util/locale/
H A DStringTokenIterator.java38 private String token; field in class:StringTokenIterator
55 return token;
59 return token;
78 token = text.substring(start, end);
81 token = null;
84 return token;
97 token = text.substring(start, end);
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java171 * @param endToken The token that will end this recursive call. Either
180 int token = parser.getEventType();
184 * token to be processed. This holds for each iteration of the loop, so
188 while (token != endToken && token != XmlPullParser.END_DOCUMENT) {
189 if (token == XmlPullParser.PROCESSING_INSTRUCTION) {
191 * Found a processing instructions. We need to split the token
203 } else if (token == XmlPullParser.DOCDECL) {
209 } else if (token == XmlPullParser.COMMENT) {
211 * Found a comment. We simply take the token tex
336 appendText(DocumentImpl document, Node parent, int token, String text) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DSignatureFileVerifier.java504 * Examines a signature timestamp token to generate a timestamp object.
513 * @return A timestamp token or null if none is present.
537 // Extract the content (an encoded timestamp token info)
548 // Create a timestamp token info object
563 * Match the hash present in the signature timestamp token against the hash
566 private void verifyTimestamp(TimestampToken token, byte[] signature) argument
570 MessageDigest.getInstance(token.getHashAlgorithm().getName());
572 if (!Arrays.equals(token.getHashedMessage(), md.digest(signature))) {
574 token.getSerialNumber() + ") generated on " + token
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DScanner.java104 * pattern, and then attempt to return the next token. Both <tt>hasNext</tt>
116 * will not pass the token that caused the exception, so that it may be
424 // A pattern for any token
879 // Returns true if a complete token or partial token is in the buffer.
880 // It is not necessary to find a complete token since a partial token
881 // means that there will be another token with or without more input.
899 * Returns a "complete token" that matches the specified pattern
901 * A token i
2056 processIntegerToken(String token) argument
2255 processFloatToken(String token) argument
[all...]

Completed in 534 milliseconds