OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Vpn
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/services/java/com/android/server/net/
LockdownVpnTracker.java
45
import com.android.server.connectivity.
Vpn
;
49
* connected and kicks off
VPN
connection, managing any required {@code netd}
55
/** Number of
VPN
attempts before waiting for user intervention. */
60
private static final String ACTION_VPN_SETTINGS = "android.net.
vpn
.SETTINGS";
61
private static final String EXTRA_PICK_LOCKDOWN = "android.net.
vpn
.PICK_LOCKDOWN";
66
private final
Vpn
mVpn;
85
ConnectivityService connService,
Vpn
vpn
, VpnProfile profile) {
89
mVpn = Preconditions.checkNotNull(
vpn
);
109
* Watch for state changes to both active egress network, kicking off a
VPN
[
all
...]
/frameworks/base/services/java/com/android/server/connectivity/
Vpn.java
84
public class
Vpn
extends BaseNetworkStateTracker {
85
private static final String TAG = "
Vpn
";
88
// TODO: create separate trackers for each unique
VPN
to support
102
public
Vpn
(Context context, VpnCallback callback, INetworkManagementService netService,
141
// TODO: finish migration to unique tracker for each
VPN
147
// TODO: finish migration to unique tracker for each
VPN
166
* Prepare for a
VPN
application. This method is designed to solve
175
* Legacy
VPN
is handled specially since it is not a real package.
179
* @param oldPackage The package name of the old
VPN
application.
180
* @param newPackage The package name of the new
VPN
application
[
all
...]
/frameworks/base/services/java/com/android/server/
ConnectivityService.java
115
import com.android.server.connectivity.
Vpn
;
182
private
Vpn
mVpn;
597
mVpn = new
Vpn
(mContext, mVpnCallback, mNetd, this);
[
all
...]
Completed in 41 milliseconds