OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTraceOutput
(Results
1 - 2
of
2
) sorted by null
/cts/tools/host/src/com/android/cts/
Log.java
38
private static BufferedWriter
mTraceOutput
= null;
176
if (
mTraceOutput
== null) {
177
mTraceOutput
= new BufferedWriter(new FileWriter("debug.txt"));
180
mTraceOutput
.write(msg + "\n");
181
mTraceOutput
.flush();
193
if (
mTraceOutput
!= null) {
195
mTraceOutput
.close();
196
mTraceOutput
= null;
/cts/tools/utils/
DescriptionGenerator.java
181
private static BufferedWriter
mTraceOutput
= null;
204
if ((
mTraceOutput
!= null) && (msg != null)) {
205
mTraceOutput
.write(msg + "\n");
206
mTraceOutput
.flush();
222
if (
mTraceOutput
== null) {
224
mTraceOutput
= new BufferedWriter(new FileWriter(fileName));
236
if (
mTraceOutput
!= null) {
238
mTraceOutput
.close();
239
mTraceOutput
= null;
Completed in 354 milliseconds