Search in sources :

Example 26 with LongSparseArray

use of android.util.LongSparseArray in project android_frameworks_base by DirtyUnicorns.

the class KeySetUtils method getPubKeyRefCount.

public static int getPubKeyRefCount(KeySetManagerService ksms, long pkId) throws NoSuchFieldException, IllegalAccessException {
    Field pkField = ksms.getClass().getDeclaredField("mPublicKeys");
    pkField.setAccessible(true);
    LongSparseArray<KeySetManagerService.PublicKeyHandle> mPublicKeys = (LongSparseArray<KeySetManagerService.PublicKeyHandle>) pkField.get(ksms);
    KeySetManagerService.PublicKeyHandle pkh = mPublicKeys.get(pkId);
    if (pkh == null) {
        return 0;
    } else {
        return pkh.getRefCountLPr();
    }
}
Also used : Field(java.lang.reflect.Field) LongSparseArray(android.util.LongSparseArray)

Example 27 with LongSparseArray

use of android.util.LongSparseArray in project android_frameworks_base by DirtyUnicorns.

the class KeySetUtils method getKeySetRefCount.

public static int getKeySetRefCount(KeySetManagerService ksms, long keysetId) throws NoSuchFieldException, IllegalAccessException {
    Field ksField = ksms.getClass().getDeclaredField("mKeySets");
    ksField.setAccessible(true);
    LongSparseArray<KeySetHandle> mKeySets = (LongSparseArray<KeySetHandle>) ksField.get(ksms);
    KeySetHandle ksh = mKeySets.get(keysetId);
    if (ksh == null) {
        return 0;
    } else {
        return ksh.getRefCountLPr();
    }
}
Also used : Field(java.lang.reflect.Field) LongSparseArray(android.util.LongSparseArray)

Example 28 with LongSparseArray

use of android.util.LongSparseArray in project android_frameworks_base by DirtyUnicorns.

the class KeySetUtils method getKeySetMapping.

public static LongSparseArray<ArraySet<Long>> getKeySetMapping(KeySetManagerService ksms) throws NoSuchFieldException, IllegalAccessException {
    Field ksField = ksms.getClass().getDeclaredField("mKeySetMapping");
    ksField.setAccessible(true);
    return (LongSparseArray<ArraySet<Long>>) ksField.get(ksms);
}
Also used : Field(java.lang.reflect.Field) LongSparseArray(android.util.LongSparseArray)

Example 29 with LongSparseArray

use of android.util.LongSparseArray in project XobotOS by xamarin.

the class AbsListView method onSaveInstanceState.

@Override
public Parcelable onSaveInstanceState() {
    /*
         * This doesn't really make sense as the place to dismiss the
         * popups, but there don't seem to be any other useful hooks
         * that happen early enough to keep from getting complaints
         * about having leaked the window.
         */
    dismissPopup();
    Parcelable superState = super.onSaveInstanceState();
    SavedState ss = new SavedState(superState);
    boolean haveChildren = getChildCount() > 0 && mItemCount > 0;
    long selectedId = getSelectedItemId();
    ss.selectedId = selectedId;
    ss.height = getHeight();
    if (selectedId >= 0) {
        // Remember the selection
        ss.viewTop = mSelectedTop;
        ss.position = getSelectedItemPosition();
        ss.firstId = INVALID_POSITION;
    } else {
        if (haveChildren && mFirstPosition > 0) {
            // Remember the position of the first child.
            // We only do this if we are not currently at the top of
            // the list, for two reasons:
            // (1) The list may be in the process of becoming empty, in
            // which case mItemCount may not be 0, but if we try to
            // ask for any information about position 0 we will crash.
            // (2) Being "at the top" seems like a special case, anyway,
            // and the user wouldn't expect to end up somewhere else when
            // they revisit the list even if its content has changed.
            View v = getChildAt(0);
            ss.viewTop = v.getTop();
            int firstPos = mFirstPosition;
            if (firstPos >= mItemCount) {
                firstPos = mItemCount - 1;
            }
            ss.position = firstPos;
            ss.firstId = mAdapter.getItemId(firstPos);
        } else {
            ss.viewTop = 0;
            ss.firstId = INVALID_POSITION;
            ss.position = 0;
        }
    }
    ss.filter = null;
    if (mFiltered) {
        final EditText textFilter = mTextFilter;
        if (textFilter != null) {
            Editable filterText = textFilter.getText();
            if (filterText != null) {
                ss.filter = filterText.toString();
            }
        }
    }
    ss.inActionMode = mChoiceMode == CHOICE_MODE_MULTIPLE_MODAL && mChoiceActionMode != null;
    if (mCheckStates != null) {
        ss.checkState = mCheckStates.clone();
    }
    if (mCheckedIdStates != null) {
        final LongSparseArray<Integer> idState = new LongSparseArray<Integer>();
        final int count = mCheckedIdStates.size();
        for (int i = 0; i < count; i++) {
            idState.put(mCheckedIdStates.keyAt(i), mCheckedIdStates.valueAt(i));
        }
        ss.checkIdState = idState;
    }
    ss.checkedItemCount = mCheckedItemCount;
    return ss;
}
Also used : LongSparseArray(android.util.LongSparseArray) Editable(android.text.Editable) Parcelable(android.os.Parcelable) View(android.view.View)

Example 30 with LongSparseArray

use of android.util.LongSparseArray in project robolectric by robolectric.

the class ShadowResourcesImpl method obtainResettableArrays.

private static List<LongSparseArray<?>> obtainResettableArrays() {
    List<LongSparseArray<?>> resettableArrays = new ArrayList<>();
    Field[] allFields = Resources.class.getDeclaredFields();
    for (Field field : allFields) {
        if (Modifier.isStatic(field.getModifiers()) && field.getType().equals(LongSparseArray.class)) {
            field.setAccessible(true);
            try {
                LongSparseArray<?> longSparseArray = (LongSparseArray<?>) field.get(null);
                if (longSparseArray != null) {
                    resettableArrays.add(longSparseArray);
                }
            } catch (IllegalAccessException e) {
                throw new RuntimeException(e);
            }
        }
    }
    return resettableArrays;
}
Also used : Field(java.lang.reflect.Field) LongSparseArray(android.util.LongSparseArray) ArrayList(java.util.ArrayList)

Aggregations

LongSparseArray (android.util.LongSparseArray)33 Field (java.lang.reflect.Field)19 Parcelable (android.os.Parcelable)7 Editable (android.text.Editable)7 View (android.view.View)7 ArrayList (java.util.ArrayList)7 PendingHostUpdate (android.appwidget.PendingHostUpdate)5 ParceledListSlice (android.content.pm.ParceledListSlice)5 Point (android.graphics.Point)5 IAppWidgetHost (com.android.internal.appwidget.IAppWidgetHost)5 Resources (android.content.res.Resources)1 Bitmap (android.graphics.Bitmap)1 MediaMetadataRetriever (android.media.MediaMetadataRetriever)1 SparseArray (android.util.SparseArray)1 Method (java.lang.reflect.Method)1 TermModel (org.wordpress.android.fluxc.model.TermModel)1