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

/frameworks/native/cmds/rawbu/
H A Dbackup.cpp173 static int write_int32(FILE* fh, int32_t val) argument
175 int res = fwrite(&val, 1, sizeof(val), fh);
184 static int write_int64(FILE* fh, int64_t val) argument
186 int res = fwrite(&val, 1, sizeof(val), fh);
235 static int write_header(FILE* fh, int type, const char* path, const struct stat* st) argument
238 if (!write_int32(fh, type)) return 0;
239 if (!write_int32(fh, pathLen)) return 0;
240 if (fwrite(path, 1, pathLen, fh) != (size_t)pathLen) {
245 if (!write_int32(fh, st->st_uid)) return 0;
246 if (!write_int32(fh, s
255 backup_dir(FILE* fh, const char* srcPath) argument
376 FILE* fh = fopen(destPath, "w"); local
415 read_int32(FILE* fh, int32_t defVal) argument
426 read_int64(FILE* fh, int64_t defVal) argument
437 read_header(FILE* fh, int* type, char** path, struct stat* st) argument
506 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.java139 Context context, IccFileHandler fh, UiccProfile uiccProfile, int slotId) {
140 if (ci == null || ca == null || ir == null || context == null || fh == null
152 mMsgDecoder = RilMessageDecoder.getInstance(this, fh, slotId);
199 IccFileHandler fh = null;
207 fh = ca.getIccFileHandler();
221 if (ci == null || ca == null || ir == null || context == null || fh == null
226 sInstance[slotId] = new CatService(ci, ca, ir, context, fh, uiccProfile, slotId);
138 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccProfile uiccProfile, int slotId) argument
H A DCommandParamsFactory.java95 IccFileHandler fh) {
99 if (fh != null) {
100 return new CommandParamsFactory(caller, fh);
105 private CommandParamsFactory(RilMessageDecoder caller, IccFileHandler fh) { argument
107 mIconLoader = IconLoader.getInstance(this, fh);
94 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/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.java155 IccFileHandler fh = mPhone.getIccFileHandler();
156 if (fh == null) {
174 fh.updateEFLinearFixed(IccConstants.EF_SMS, i + 1, record, null, null);
232 IccFileHandler fh = mPhone.getIccFileHandler();
233 if (fh == null) {
238 fh.updateEFLinearFixed(
310 IccFileHandler fh = mPhone.getIccFileHandler();
311 if (fh == null) {
318 fh.loadEFLinearFixedAll(IccConstants.EF_SMS, response);
H A DPhone.java1569 IccFileHandler fh;
1573 fh = null;
1575 fh = uiccApplication.getIccFileHandler();
1578 Rlog.d(LOG_TAG, "getIccFileHandler: fh=" + fh);
1579 return fh;
/frameworks/base/core/jni/
H A Dcom_android_internal_os_FuseAppLoop.cpp138 JNIEnv* env, jobject self, jlong ptr, jlong unique, jlong fh) {
139 if (!reinterpret_cast<fuse::FuseAppLoop*>(ptr)->ReplyOpen(unique, fh)) {
137 com_android_internal_os_FuseAppLoop_replyOpen( JNIEnv* env, jobject self, jlong ptr, jlong unique, jlong fh) 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.java62 AdnRecordLoader(IccFileHandler fh) { argument
66 mFh = fh;
/frameworks/ml/nn/tools/test_generator/
H A Dtest_generator.py37 fh = open(filename, 'w')
39 fh = sys.stdout
42 yield fh
44 if fh is not sys.stdout:
45 fh.close()
/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/core/java/com/android/internal/os/
H A DFuseAppLoop.java265 native_replyOpen(mInstance, unique, /* fh */ inode);
314 native void native_replyOpen(long ptr, long unique, long fh); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java983 final int fh = mFrame.height();
1127 if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {

Completed in 1192 milliseconds