HomeSort by relevance Sort by last modified time
    Searched refs:VPN (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/chromeos/network/
shill_property_util.h 56 // Only WiFi, VPN, Ethernet and EthernetEAP are supported. WiMax and Cellular
64 // CopyIdentifyingProperties. Only WiFi, VPN, Ethernet and EthernetEAP are
90 static NetworkTypePattern VPN();
shill_property_util.cc 221 // VPN Provider values are read from the "Provider" dictionary, but written
226 NET_LOG_ERROR("CopyIdentifyingProperties", "Missing VPN provider dict");
348 NetworkTypePattern NetworkTypePattern::VPN() {
  /external/chromium_org/ash/system/chromeos/network/
tray_vpn.cc 47 // Do not show VPN line in uber tray bubble if VPN is not configured.
50 const NetworkState* vpn = local
51 handler->FirstNetworkByType(NetworkTypePattern::VPN());
52 return vpn != NULL;
80 const NetworkState* vpn = local
81 handler->FirstNetworkByType(NetworkTypePattern::VPN());
82 if (!vpn || (vpn->connection_state() == shill::kStateIdle)) {
92 *animating = vpn->IsConnectingState()
    [all...]
network_icon.cc 73 // Updates the VPN badge. Returns true if changed.
82 // Defines color theme and VPN badging
94 // Cached vpn badge for the network when the icon was last generated.
472 } else if (network->Matches(NetworkTypePattern::VPN())) {
588 const NetworkState* vpn = NetworkHandler::Get()->network_state_handler()-> local
589 ConnectedNetworkByType(NetworkTypePattern::VPN());
590 if (vpn && vpn_badge_ == NULL) {
593 } else if (!vpn && vpn_badge_ != NULL) {
774 state_handler->ConnectingNetworkByType(NetworkTypePattern::VPN());
network_state_list_detailed_view.cc 846 handler->FormattedHardwareAddressForType(NetworkTypePattern::VPN());
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 69 private static final String EXTRA_PICK_LOCKDOWN = "android.net.vpn.PICK_LOCKDOWN";
107 inflater.inflate(R.menu.vpn, menu);
114 // Hide lockdown VPN on devices that require IMS authentication
240 mKeyStore.put(Credentials.VPN + profile.key, profile.encode(), KeyStore.UID_SELF,
309 mKeyStore.delete(Credentials.VPN + mSelectedKey);
457 * Dialog to configure always-on VPN.
549 final String[] keys = keyStore.saw(Credentials.VPN);
553 key, keyStore.get(Credentials.VPN + key));
  /external/qemu/target-mips/
helper.c 72 target_ulong VPN;
81 VPN = tlb->VPN & ~mask;
88 if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
827 addr = tlb->VPN & ~mask;
840 addr = (tlb->VPN & ~mask) | ((mask >> 1) + 1);
op_helper.c     [all...]
machine.c 71 qemu_put_betls(f, &env->tlb->mmu.r4k.tlb[i].VPN);
215 qemu_get_betls(f, &env->tlb->mmu.r4k.tlb[i].VPN);
cpu.h 26 target_ulong VPN;
  /frameworks/base/keystore/java/android/security/
Credentials.java 65 /** Key prefix for VPN. */
66 public static final String VPN = "VPN_";
71 /** Key containing suffix of lockdown VPN profile. */
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 244 const char kTagVpn[] = "vpn";
637 // Fills |dictionary| with the configuration details of |vpn|. |onc| is required
639 void PopulateVPNDetails(const NetworkState* vpn,
647 LOG(ERROR) << "No provider properties for VPN: " << vpn->path();
669 onc::FindPolicyForActiveUser(vpn->guid(), &onc_source);
676 ::onc::vpn::kHost));
684 // Disable 'Connect' for VPN unless connected to a non-VPN network.
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 125 import com.android.server.connectivity.Vpn;
217 private final SparseArray<Vpn> mVpns = new SparseArray<Vpn>();
1543 Vpn vpn = mVpns.get(uid); local
    [all...]

Completed in 140 milliseconds