HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 751 - 775 of 1027) sorted by null

<<31323334353637383940>>

  /bionic/libc/dns/resolv/
res_cache.c 1464 FILE* fp; local
    [all...]
  /bionic/tests/
pthread_test.cpp 1654 FILE* fp = fopen("\/proc\/sys\/kernel\/pid_max", "r"); local
    [all...]
  /bootable/recovery/
recovery.cpp 188 FILE *fp = fopen(path, mode); local
189 return fp;
193 static void check_and_fclose(FILE *fp, const char *name) {
194 fflush(fp);
195 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
196 fclose(fp);
328 FILE *fp = fopen_path(COMMAND_FILE, "r"); local
329 if (fp != NULL) {
337 if (!fgets(buf, sizeof(buf), fp)) break;
346 check_and_fclose(fp, COMMAND_FILE)
502 FILE *fp = fopen_path(INTENT_FILE, "w"); local
519 FILE* fp = fopen_path(LOCALE_FILE, "w"); local
1140 FILE* fp = fopen_path(LOCALE_FILE, "r"); local
    [all...]
  /external/blktrace/btreplay/
btreplay.c 629 FILE *fp; local
632 fp = fopen(file_name, "r");
633 if (!fp) {
638 while (fscanf(fp, "%as %as", &from_dev, &to_dev) == 2) {
646 fclose(fp);
    [all...]
  /external/bzip2/
bzip2.c 963 FILE* fp; local
967 fp = fdopen(fh, mode);
968 if (fp == NULL) close(fh);
969 return fp;
    [all...]
  /external/clang/test/CXX/drs/
dr2xx.cpp 573 FPtr fp = &f<3>; member in namespace:dr250
  /external/curl/lib/vtls/
openssl.c 2635 FILE *fp; local
    [all...]
  /external/e2fsprogs/misc/
e4defrag.c 268 FILE *fp = NULL; local
278 fp = setmntent(mtab, "r");
279 if (fp == NULL) {
284 while ((mnt = getmntent(fp)) != NULL) {
296 endmntent(fp);
305 endmntent(fp);
319 FILE *fp = NULL; local
345 fp = setmntent(mtab, "r");
346 if (fp == NULL) {
351 while ((mnt = getmntent(fp)) != NULL)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateTimeGeneratorTest.java 1037 FormatParser fp = new FormatParser(); local
1051 FormatParser fp = new FormatParser(); local
1072 FormatParser fp = new FormatParser(); local
    [all...]
NumberRegression.java 159 FieldPosition fp = new FieldPosition(0); local
161 logln(df.format(123, sBuf, fp).toString());
340 FieldPosition fp = new FieldPosition(0); local
343 df.format(d, sb, fp);
358 FieldPosition fp; local
363 fp = new FieldPosition(0);
365 logln(" formated: " + df.format(d, sb, fp));
    [all...]
TestMessageFormat.java 500 FieldPosition fp = new FieldPosition(0); local
505 fp);
514 fp);
988 FieldPosition fp = new FieldPosition(0); local
    [all...]
  /external/icu/icu4c/source/common/
putil.cpp 2089 UVoidFunction *fp; member in union:__anon12585
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cdattst.c 447 UFieldPosition fp; local
509 fp.field = UDAT_MINUTE_FIELD;
513 udat_format(fmtRelDateTime, dateToUse, strDateTime, kDateAndTimeOutMax, &fp, &status);
555 if ( fp.beginIndex != beginIndex ) {
556 log_err("UFieldPosition beginIndex %d, expected %d, in udat_format timeStyle SHORT dateStyle (%d | UDAT_RELATIVE)\n", fp.beginIndex, beginIndex, *stylePtr );
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateTimeGeneratorTest.java 1033 FormatParser fp = new FormatParser(); local
1047 FormatParser fp = new FormatParser(); local
1068 FormatParser fp = new FormatParser(); local
    [all...]
NumberRegression.java 155 FieldPosition fp = new FieldPosition(0); local
157 logln(df.format(123, sBuf, fp).toString());
336 FieldPosition fp = new FieldPosition(0); local
339 df.format(d, sb, fp);
354 FieldPosition fp; local
359 fp = new FieldPosition(0);
361 logln(" formated: " + df.format(d, sb, fp));
    [all...]
TestMessageFormat.java 496 FieldPosition fp = new FieldPosition(0); local
501 fp);
510 fp);
984 FieldPosition fp = new FieldPosition(0); local
    [all...]
  /external/iproute2/tc/
tc_bpf.c 103 FILE *fp; local
112 fp = fopen(arg, "r");
113 if (fp == NULL) {
119 if (!fgets(tmp_string, tmp_len, fp)) {
121 fclose(fp);
125 fclose(fp);
220 FILE *fp; local
224 fp = fopen(file, "r");
225 if (!fp) {
231 while (fgets(buff, sizeof(buff), fp)) {
308 FILE *fp; local
1512 FILE *fp; local
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 898 FILE *fp; local
916 fp = fopen(path, "r");
917 if (fp == NULL)
919 x509 = PEM_read_X509(fp, NULL, NULL, NULL);
920 fclose (fp);
1008 FILE *fp; local
1026 fp = fopen(path, "r");
1027 if (fp == NULL)
1030 evp = PEM_read_PrivateKey(fp, NULL, NULL, NULL);
1032 fclose (fp);
1071 FILE *fp; local
    [all...]
ipsec_doi.c 3936 FILE *fp; local
    [all...]
  /external/libedit/src/
readline.c 1175 FILE *fp, *tp; local
1186 if ((fp = fopen(filename, "r+")) == NULL)
1201 if (fread(buf, sizeof(buf), (size_t)1, fp) != 1) {
1202 if (ferror(fp)) {
1206 if (fseeko(fp, (off_t)sizeof(buf) * count, SEEK_SET) ==
1211 left = (ssize_t)fread(buf, (size_t)1, sizeof(buf), fp);
1212 if (ferror(fp)) {
1271 if (fseeko(fp, (off_t)0, SEEK_SET) == (off_t)-1) {
1284 if (ferror(fp))
1288 if (fwrite(buf, (size_t)left, (size_t)1, fp) != 1)
    [all...]
  /external/libpng/contrib/libtests/
pngimage.c 448 buffer_from_file(struct buffer *buffer, FILE *fp)
456 (sizeof last->buffer)-count, fp);
481 if (feof(fp))
774 FILE *fp; local
781 fp = fopen(filename, "rb");
782 if (fp == NULL)
787 fp = stdin;
789 ret = buffer_from_file(&dp->original_file, fp);
791 fclose(fp);
    [all...]
  /external/libpng/
png.c 662 png_init_io(png_structrp png_ptr, png_FILE_p fp)
669 png_ptr->io_ptr = (png_voidp)fp;
4429 FILE *fp = png_voidcast(FILE*, cp->png_ptr->io_ptr); local
    [all...]
pngread.c 1480 FILE *fp = fopen(file_name, "rb"); local
    [all...]
  /external/libselinux/src/
android.c 333 FILE *fp = NULL; local
344 fp = fopen(seapp_contexts_file[policy_index], "r");
345 if (!fp) {
353 while (fgets(line_buf, sizeof line_buf - 1, fp)) {
366 rewind(fp);
369 while (fgets(line_buf, sizeof line_buf - 1, fp)) {
602 fclose(fp);
    [all...]
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 1876 FILE * fp; local
    [all...]

Completed in 2724 milliseconds

<<31323334353637383940>>