Searched refs:localOnly (Results 1 – 5 of 5) sorted by relevance
/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
D | State.java | 83 public boolean localOnly; field in State 176 out.writeInt(localOnly ? 1 : 0); in writeToParcel() 191 + ", localOnly=" + localOnly in toString() 213 state.localOnly = in.readInt() != 0;
|
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/ |
D | Tethering.java | 916 final ArrayList<TetheringInterface> localOnly = new ArrayList<>(); in sendTetherStateChangedBroadcast() local 934 localOnly.add(tetheringIface); in sendTetherStateChangedBroadcast() 949 mTetherStatesParcel = buildTetherStatesParcel(available, localOnly, tethered, errored, in sendTetherStateChangedBroadcast() 953 mContext.sendStickyBroadcastAsUser(buildStateChangeIntent(available, localOnly, tethered, in sendTetherStateChangedBroadcast() 959 "local_only", TextUtils.join(",", localOnly), in sendTetherStateChangedBroadcast() 969 final ArrayList<TetheringInterface> localOnly, in buildTetherStatesParcel() argument 977 parcel.localOnlyList = localOnly.toArray(new TetheringInterface[0]); in buildTetherStatesParcel() 988 final ArrayList<TetheringInterface> localOnly, in buildStateChangeIntent() argument 995 bcast.putStringArrayListExtra(EXTRA_ACTIVE_LOCAL_ONLY, toIfaces(localOnly)); in buildStateChangeIntent()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/roots/ |
D | ProvidersAccess.java | 101 if (state.localOnly && !root.isLocalOnly()) { in getMatchingRoots()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/roots/ |
D | ProvidersAccessTest.java | 76 mState.localOnly = false; in setUp()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/ |
D | BaseActivity.java | 406 state.localOnly = intent.getBooleanExtra(Intent.EXTRA_LOCAL_ONLY, false); in getState()
|