OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fstr
(Results
1 - 4
of
4
) sorted by null
/system/core/liblog/
fake_log_device.c
272
const char*
fstr
= getenv("ANDROID_PRINTF_LOG");
local
274
if (
fstr
== NULL) {
277
if (strcmp(
fstr
, "brief") == 0)
279
else if (strcmp(
fstr
, "process") == 0)
281
else if (strcmp(
fstr
, "tag") == 0)
283
else if (strcmp(
fstr
, "thread") == 0)
285
else if (strcmp(
fstr
, "raw") == 0)
287
else if (strcmp(
fstr
, "time") == 0)
289
else if (strcmp(
fstr
, "long") == 0)
292
format = (LogFormat) atoi(
fstr
); // really?
[
all
...]
/frameworks/base/services/java/com/android/server/usb/
UsbSettingsManager.java
431
FileOutputStream
fstr
= new FileOutputStream(sSettingsFile);
local
432
if (DEBUG) Slog.d(TAG, "writing settings to " +
fstr
);
433
BufferedOutputStream str = new BufferedOutputStream(
fstr
);
458
FileUtils.sync(
fstr
);
[
all
...]
/frameworks/base/services/java/com/android/server/pm/
Settings.java
679
final FileOutputStream
fstr
= new FileOutputStream(mStoppedPackagesFilename);
local
680
final BufferedOutputStream str = new BufferedOutputStream(
fstr
);
706
FileUtils.sync(
fstr
);
856
FileOutputStream
fstr
= new FileOutputStream(mSettingsFilename);
local
[
all
...]
PackageManagerService.java
6740
final FileOutputStream
fstr
= new FileOutputStream(publicZipFile);
local
[
all
...]
Completed in 216 milliseconds