OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:out
(Results
926 - 950
of
4560
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/stubhal/
GenericSoundModelTest.java
166
DataOutputStream
out
= new DataOutputStream(socket.getOutputStream());
local
167
out
.writeBytes("trig " + model.uuid.toString() + "\r\n");
168
out
.flush();
242
DataOutputStream
out
= new DataOutputStream(socket.getOutputStream());
local
243
out
.writeBytes("trig " + modelInfo.model.uuid + "\r\n");
244
out
.flush();
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
Hprof.java
134
System.
out
.println(e);
151
System.
out
.println("GetHprof.onEndFailure");
167
System.
out
.println("GetHprof.onSuccess");
183
System.
out
.println("GetHprof.onSuccess");
187
BufferedOutputStream
out
=
local
189
out
.write(arg0);
190
out
.close();
212
System.
out
.println("Dump file is " + hprofLocalFile);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
OMAConstructed.java
141
public void marshal(OutputStream
out
, int level) throws IOException {
142
OMAConstants.indent(level,
out
);
143
OMAConstants.serializeString(getName(),
out
);
local
145
out
.write(String.format("(%s)", getContext()).getBytes(StandardCharsets.UTF_8));
147
out
.write(new byte[] { '+', '\n' });
150
child.marshal(
out
, level + 1);
152
OMAConstants.indent(level,
out
);
153
out
.write(".\n".getBytes(StandardCharsets.UTF_8));
/frameworks/volley/src/main/java/com/android/volley/toolbox/
HurlStack.java
219
DataOutputStream
out
= new DataOutputStream(connection.getOutputStream());
local
220
out
.write(postBody);
221
out
.close();
264
DataOutputStream
out
= new DataOutputStream(connection.getOutputStream());
local
265
out
.write(body);
266
out
.close();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessManagerTest.java
39
OutputStream
out
= process.getOutputStream();
local
41
out
.write(greeting.getBytes());
42
out
.write('\n');
43
out
.close();