Lines Matching defs:ObbState

206     final private Map<IBinder, List<ObbState>> mObbMounts = new HashMap<IBinder, List<ObbState>>();
207 final private Map<String, ObbState> mObbPathToStateMap = new HashMap<String, ObbState>();
209 class ObbState implements IBinder.DeathRecipient {
210 public ObbState(String filename, int callerUid, IObbActionListener token, int nonce)
250 StringBuilder sb = new StringBuilder("ObbState{");
1751 final ObbState obbState = new ObbState(filename, callerUid, token, nonce);
1766 final ObbState obbState = new ObbState(filename, callerUid, token, nonce);
1958 private void addObbStateLocked(ObbState obbState) throws RemoteException {
1960 List<ObbState> obbStates = mObbMounts.get(binder);
1963 obbStates = new ArrayList<ObbState>();
1966 for (final ObbState o : obbStates) {
1968 throw new IllegalStateException("Attempt to add ObbState twice. "
1994 private void removeObbStateLocked(ObbState obbState) {
1996 final List<ObbState> obbStates = mObbMounts.get(binder);
2112 final List<ObbState> obbStatesToRemove = new LinkedList<ObbState>();
2114 final Iterator<Entry<String, ObbState>> i =
2117 final Entry<String, ObbState> obbEntry = i.next();
2129 for (final ObbState obbState : obbStatesToRemove) {
2172 ObbState mObbState;
2174 ObbAction(ObbState obbState) {
2240 MountObbAction(ObbState obbState, String key) {
2351 UnmountObbAction(ObbState obbState, boolean force) {
2363 final ObbState obbState;
2447 final Iterator<Entry<IBinder, List<ObbState>>> binders = mObbMounts.entrySet().iterator();
2449 Entry<IBinder, List<ObbState>> e = binders.next();
2451 final List<ObbState> obbStates = e.getValue();
2452 for (final ObbState obbState : obbStates) {
2459 final Iterator<Entry<String, ObbState>> maps = mObbPathToStateMap.entrySet().iterator();
2461 final Entry<String, ObbState> e = maps.next();