HomeSort by relevance Sort by last modified time
    Searched refs:fstr (Results 1 - 6 of 6) sorted by null

  /external/openssl/crypto/engine/
tb_asnmth.c 230 ENGINE_FIND_STR fstr; local
231 fstr.e = NULL;
232 fstr.ameth = NULL;
233 fstr.str = str;
234 fstr.len = len;
236 engine_table_doall(pkey_asn1_meth_table, look_str_cb, &fstr);
238 if (fstr.e)
240 fstr.e->struct_ref++;
241 engine_ref_debug(fstr.e, 0, 1)
243 *pe = fstr.e
    [all...]
  /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/core/java/com/android/internal/content/
PackageHelper.java 211 final FileOutputStream fstr; local
215 fstr = null;
218 fstr = new FileOutputStream(publicZipFile);
219 publicZipOutStream = new ZipOutputStream(fstr);
246 FileUtils.sync(fstr);
  /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 913 final FileOutputStream fstr = new FileOutputStream(userPackagesStateFile); local
1128 FileOutputStream fstr = new FileOutputStream(mSettingsFilename); local
    [all...]

Completed in 1590 milliseconds