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

/libcore/ojluni/src/main/java/java/net/
H A DSocketOutputStream.java52 private byte temp[] = new byte[1]; field in class:SocketOutputStream
139 temp[0] = (byte)b;
140 socketWrite(temp, 0, 1);
H A DSocketInputStream.java54 private byte temp[]; field in class:SocketInputStream
228 temp = new byte[1];
229 int n = read(temp, 0, 1);
233 return temp[0] & 0xff;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DObjectStreamFieldTest.java292 private ObjectStreamClass temp = null; field in class:MockObjectInputStream
308 temp = osc;
314 return temp;
/libcore/ojluni/src/main/native/
H A Djava_props_md.c116 char *temp = malloc(strlen(envstring) + strlen(current) + 2); local
117 strcpy(temp, name);
118 strcat(temp, "=");
119 strcat(temp, current);
120 strcat(temp, ":");
121 strcat(temp, value);
122 putenv(temp);
138 char temp[64]; local
168 strcpy(temp, lc);
169 p = strstr(temp, "
[all...]
/libcore/ojluni/src/main/java/sun/security/x509/
H A DAVA.java174 StringBuilder temp = new StringBuilder();
186 temp.append((char)c);
189 oid = AVAKeyword.getOID(temp.toString(), format, keywordMap);
196 temp.setLength(0);
219 value = parseQuotedString(in, temp);
221 value = parseString(in, c, format, temp);
313 (Reader in, StringBuilder temp) throws IOException {
352 temp.append(hexString);
358 temp.append((char)c);
365 temp
312 parseQuotedString(Reader in, StringBuilder temp) argument
399 parseString(Reader in, int c, int format, StringBuilder temp) argument
[all...]
/libcore/luni/src/main/native/
H A Dcbigint.cpp198 uint64_t* temp; local
204 temp = arg1;
206 arg2 = temp;

Completed in 514 milliseconds