Searched defs:fh (Results 1 - 8 of 8) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java51 * @param fh
54 public static synchronized RilMessageDecoder getInstance(Handler caller, IccFileHandler fh) { argument
56 sInstance = new RilMessageDecoder(caller, fh);
93 private RilMessageDecoder(Handler caller, IccFileHandler fh) { argument
101 mCmdParamsFactory = CommandParamsFactory.getInstance(this, fh);
H A DCommandParamsFactory.java60 IccFileHandler fh) {
64 if (fh != null) {
65 return new CommandParamsFactory(caller, fh);
70 private CommandParamsFactory(RilMessageDecoder caller, IccFileHandler fh) { argument
72 mIconLoader = IconLoader.getInstance(this, fh);
59 getInstance(RilMessageDecoder caller, IccFileHandler fh) argument
H A DIconLoader.java69 private IconLoader(Looper looper , IccFileHandler fh) { argument
71 mSimFH = fh;
76 static IconLoader getInstance(Handler caller, IccFileHandler fh) { argument
80 if (fh != null) {
83 return new IconLoader(thread.getLooper(), fh);
H A DCatService.java107 Context context, IccFileHandler fh, UiccCard ic) {
108 if (ci == null || ca == null || ir == null || context == null || fh == null
117 mMsgDecoder = RilMessageDecoder.getInstance(this, fh);
537 IccFileHandler fh = null;
545 fh = ca.getIccFileHandler();
551 if (ci == null || ca == null || ir == null || context == null || fh == null
557 sInstance = new CatService(ci, ca, ir, context, fh, ic);
106 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DAdnRecordCache.java58 AdnRecordCache(IccFileHandler fh) { argument
59 mFh = fh;
H A DAdnRecordLoader.java60 AdnRecordLoader(IccFileHandler fh) { argument
64 mFh = fh;
/frameworks/native/cmds/rawbu/
H A Dbackup.cpp174 static int write_int32(FILE* fh, int32_t val) argument
176 int res = fwrite(&val, 1, sizeof(val), fh);
185 static int write_int64(FILE* fh, int64_t val) argument
187 int res = fwrite(&val, 1, sizeof(val), fh);
236 static int write_header(FILE* fh, int type, const char* path, const struct stat* st) argument
239 if (!write_int32(fh, type)) return 0;
240 if (!write_int32(fh, pathLen)) return 0;
241 if (fwrite(path, 1, pathLen, fh) != (size_t)pathLen) {
246 if (!write_int32(fh, st->st_uid)) return 0;
247 if (!write_int32(fh, s
256 backup_dir(FILE* fh, const char* srcPath) argument
377 FILE* fh = fopen(destPath, "w"); local
416 read_int32(FILE* fh, int32_t defVal) argument
427 read_int64(FILE* fh, int64_t defVal) argument
438 read_header(FILE* fh, int* type, char** path, struct stat* st) argument
507 FILE* fh = fopen(srcPath, "r"); local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java77 public UsimPhoneBookManager(IccFileHandler fh, AdnRecordCache cache) { argument
78 mFh = fh;

Completed in 214 milliseconds