/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...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
tokens.c | 68 static char *idstr(const char *fstr, MemoryPool *pool) 74 len = strlen(fstr); 80 for (f=fstr, t=str; *f; f++) {
|
/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...] |