Searched refs:fh (Results 1 - 15 of 15) sorted by relevance

/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/cat/
H A DRilMessageDecoder.java55 * @param fh
58 public static synchronized RilMessageDecoder getInstance(Handler caller, IccFileHandler fh, argument
70 mInstance[slotId] = new RilMessageDecoder(caller, fh);
111 private RilMessageDecoder(Handler caller, IccFileHandler fh) { argument
119 mCmdParamsFactory = CommandParamsFactory.getInstance(this, fh);
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.java131 Context context, IccFileHandler fh, UiccCard ic, int slotId) {
132 if (ci == null || ca == null || ir == null || context == null || fh == null
144 mMsgDecoder = RilMessageDecoder.getInstance(this, fh, slotId);
191 IccFileHandler fh = null;
199 fh = ca.getIccFileHandler();
213 if (ci == null || ca == null || ir == null || context == null || fh == null
218 sInstance[slotId] = new CatService(ci, ca, ir, context, fh, ic, slotId);
130 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic, int slotId) argument
H A DCommandParamsFactory.java86 IccFileHandler fh) {
90 if (fh != null) {
91 return new CommandParamsFactory(caller, fh);
96 private CommandParamsFactory(RilMessageDecoder caller, IccFileHandler fh) { argument
98 mIconLoader = IconLoader.getInstance(this, fh);
85 getInstance(RilMessageDecoder caller, IccFileHandler fh) argument
/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp94 const GLfloat fh = h; local
98 { 0, fh },
99 { fw, fh },
/frameworks/native/opengl/tests/linetex/
H A Dlinetex.cpp83 const GLfloat fh = h; local
87 { fw2, fh }
/frameworks/base/packages/MtpDocumentsProvider/jni/
H A Dcom_android_mtp_AppFuse.cpp271 out->data()->fh = handle;
281 const std::map<uint32_t, uint64_t>::iterator it = handles_.find(in->fh);
304 const std::map<uint32_t, uint64_t>::iterator it = handles_.find(in->fh);
313 in->fh, it->second, offset, size, buffer, &written_size);
325 handles_.erase(in->fh);
326 return env_->CallIntMethod(self_, app_fuse_close_file_handle, file_handle_to_jlong(in->fh));
332 return env_->CallIntMethod(self_, app_fuse_flush_file_handle, file_handle_to_jlong(in->fh));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccPhoneBookInterfaceManager.java265 IccFileHandler fh = mPhone.getIccFileHandler();
266 if (fh != null) {
267 fh.getEFLinearRecordSize(efid, response);
H A DIccSmsInterfaceManager.java142 IccFileHandler fh = mPhone.getIccFileHandler();
143 if (fh == null) {
161 fh.updateEFLinearFixed(IccConstants.EF_SMS, i + 1, record, null, null);
219 IccFileHandler fh = mPhone.getIccFileHandler();
220 if (fh == null) {
225 fh.updateEFLinearFixed(
297 IccFileHandler fh = mPhone.getIccFileHandler();
298 if (fh == null) {
305 fh.loadEFLinearFixedAll(IccConstants.EF_SMS, response);
H A DPhone.java1483 IccFileHandler fh;
1487 fh = null;
1489 fh = uiccApplication.getIccFileHandler();
1492 Rlog.d(LOG_TAG, "getIccFileHandler: fh=" + fh);
1493 return fh;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DAdnRecordCache.java58 AdnRecordCache(IccFileHandler fh) { argument
59 mFh = fh;
H A DAdnRecordLoader.java62 AdnRecordLoader(IccFileHandler fh) { argument
66 mFh = fh;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java110 public UsimPhoneBookManager(IccFileHandler fh, AdnRecordCache cache) { argument
111 mFh = fh;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java811 final int fh = mFrame.height();
941 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {

Completed in 1133 milliseconds