Lines Matching defs:obbState

1751         final ObbState obbState = new ObbState(filename, callerUid, token, nonce);
1752 final ObbAction action = new MountObbAction(obbState, key);
1766 final ObbState obbState = new ObbState(filename, callerUid, token, nonce);
1767 final ObbAction action = new UnmountObbAction(obbState, force);
1958 private void addObbStateLocked(ObbState obbState) throws RemoteException {
1959 final IBinder binder = obbState.getBinder();
1967 if (o.filename.equals(obbState.filename)) {
1974 obbStates.add(obbState);
1976 obbState.link();
1982 obbStates.remove(obbState);
1991 mObbPathToStateMap.put(obbState.filename, obbState);
1994 private void removeObbStateLocked(ObbState obbState) {
1995 final IBinder binder = obbState.getBinder();
1998 if (obbStates.remove(obbState)) {
1999 obbState.unlink();
2006 mObbPathToStateMap.remove(obbState.filename);
2129 for (final ObbState obbState : obbStatesToRemove) {
2131 Slog.i(TAG, "Removing state for " + obbState.filename);
2133 removeObbStateLocked(obbState);
2136 obbState.token.onObbResult(obbState.filename, obbState.nonce,
2140 + obbState.filename);
2174 ObbAction(ObbState obbState) {
2175 mObbState = obbState;
2240 MountObbAction(ObbState obbState, String key) {
2241 super(obbState);
2351 UnmountObbAction(ObbState obbState, boolean force) {
2352 super(obbState);
2363 final ObbState obbState;
2365 obbState = mObbPathToStateMap.get(obbInfo.filename);
2368 if (obbState == null) {
2373 if (obbState.callerUid != mObbState.callerUid) {
2401 removeObbStateLocked(obbState);
2452 for (final ObbState obbState : obbStates) {
2453 pw.print(" "); pw.println(obbState.toString());