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

/frameworks/base/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/cdma/
H A DRuimPhoneBookInterfaceManager.java64 IccFileHandler fh = phone.getIccFileHandler();
66 if (fh != null) {
67 fh.getEFLinearRecordSize(efid, response);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java64 IccFileHandler fh = phone.getIccFileHandler();
65 if (fh != null) {
66 fh.getEFLinearRecordSize(efid, response);
H A DUsimPhoneBookManager.java78 public UsimPhoneBookManager(IccFileHandler fh, AdnRecordCache cache) { argument
79 mFh = fh;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java148 final float fh = getFullHeight();
155 braking = mExpandedHeight >= (fh-mExpandBrakingDistancePx);
180 if (mRubberbanding && h < fh) {
181 h = fh;
192 || ((mRubberbanding || !mClosing) && mExpandedHeight == fh)) {
425 if (DEBUG) LOG("onLayout: changed=%s, bottom=%d eh=%d fh=%d", changed?"T":"f", bottom, (int)mExpandedHeight, mFullHeight);
430 float fh = getFullHeight();
431 if (fh == 0) {
436 if (!(mRubberbandingEnabled && (mTracking || mRubberbanding)) && h > fh) h = fh;
[all...]
/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 DIconLoader.java71 private IconLoader(Looper looper , IccFileHandler fh) { argument
73 mSimFH = fh;
78 static IconLoader getInstance(Handler caller, IccFileHandler fh) { argument
82 if (fh != null) {
85 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);
558 * @param fh Icc file handler
565 IccFileHandler fh = null;
573 fh = ca.getIccFileHandler();
579 if (ci == null || ca == null || ir == null || context == null || fh == null
585 sInstance = new CatService(ci, ca, ir, context, fh, ic);
106 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic) argument
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
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DAdnRecordCache.java59 public AdnRecordCache(IccFileHandler fh) { argument
60 mFh = fh;
H A DAdnRecordLoader.java60 public AdnRecordLoader(IccFileHandler fh) { argument
64 mFh = fh;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java438 final int fh = frame.height();
497 if (mIsWallpaper && (fw != frame.width() || fh != frame.height())) {
H A DWindowManagerService.java5835 int fh = frame.height();
5840 float targetHeightScale = height / (float) fh;
5852 if (targetWidthScale > scale && (int) (targetWidthScale * fh) == height) {

Completed in 779 milliseconds