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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java54 * @param fh
57 public static synchronized RilMessageDecoder getInstance(Handler caller, IccFileHandler fh, argument
69 mInstance[slotId] = new RilMessageDecoder(caller, fh);
110 private RilMessageDecoder(Handler caller, IccFileHandler fh) { argument
118 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.java70 private IconLoader(Looper looper , IccFileHandler fh) { argument
72 mSimFH = fh;
77 static IconLoader getInstance(Handler caller, IccFileHandler fh) { argument
81 if (fh != null) {
84 return new IconLoader(sThread.getLooper(), fh);
H A DCatService.java123 Context context, IccFileHandler fh, UiccCard ic, int slotId) {
124 if (ci == null || ca == null || ir == null || context == null || fh == null
136 mMsgDecoder = RilMessageDecoder.getInstance(this, fh, slotId);
181 IccFileHandler fh = null;
189 fh = ca.getIccFileHandler();
196 if (ci == null || ca == null || ir == null || context == null || fh == null
201 sInstance = new CatService(ci, ca, ir, context, fh, ic, slotId);
122 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic, int slotId) 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 258 milliseconds