Home | History | Annotate | Download | only in aapt

Lines Matching defs:fp

1323                                const sp<AaptFile>& file, FILE* fp, image_info* imageInfo) {
1328 png_init_io(read_ptr, fp);
1378 FILE* fp;
1387 fp = fopen(file->getSourceFile().string(), "rb");
1388 if (fp == NULL) {
1404 if (!read_png_protected(read_ptr, printableName, read_info, file, fp, &imageInfo)) {
1431 fseek(fp, 0, SEEK_END);
1432 size_t oldSize = (size_t)ftell(fp);
1443 if (fp) {
1444 fclose(fp);
1462 fp;
1476 fp = fopen(source.string(),"rb");
1477 if (fp == NULL) {
1485 fclose(fp);
1493 fclose(fp);
1500 fclose(fp);
1506 png_init_io(read_ptr,fp);
1513 fseek(fp, 0, SEEK_END);
1514 size_t oldSize = (size_t)ftell(fp);
1515 fclose(fp);
1543 fp = fopen(dest.string(), "wb");
1544 if (!fp) {
1551 png_init_io(write_ptr, fp);
1555 fclose(fp);
1577 fclose(fp);