HomeSort by relevance Sort by last modified time
    Searched refs:fqdn (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/syslinux/gpxe/src/net/udp/
dns.c 192 * @ret fqdn Fully-qualified domain name, malloc'd copy
194 * The caller must free fqdn which is allocated even if the name is already
198 char *fqdn; local
205 asprintf ( &fqdn, "%s.%s", string, localdomain );
206 return fqdn;
482 char *fqdn; local
494 fqdn = dns_qualify_name ( name );
495 if ( ! fqdn ) {
515 dns->qinfo = ( void * ) dns_make_name ( fqdn, dns->query.payload );
534 free ( fqdn );
    [all...]
  /external/curl/docs/cmdline-opts/
socks5-gssapi-service.d 6 The default service name for a socks server is rcmd/server-fqdn. This option
  /external/mdnsresponder/mDNSShared/
uds_daemon.h 68 extern void external_start_resolving_service(const domainname *const fqdn);
69 extern void external_stop_resolving_service(const domainname *const fqdn);
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 86 static int valid_fqdn(const char *fqdn)
91 if (strchr(fqdn, '.') == 0 || strlen(fqdn) > 255)
93 for (pos = fqdn; *pos; pos++) {
188 const char *fqdn)
196 wpa_printf(MSG_INFO, "PPS for certificate credential - fqdn=%s", fqdn);
231 os_snprintf(buf, sizeof(buf), "SP/%s/client-ca.pem", fqdn);
239 os_snprintf(buf, sizeof(buf), "SP/%s/client-cert.pem", fqdn);
256 os_snprintf(buf, sizeof(buf), "SP/%s/client-key.pem", fqdn);
522 char *fqdn, *pos; local
1244 char *fqdn = NULL; local
1771 const char *fqdn; local
1804 char *fqdn = NULL; local
    [all...]
oma_dm_client.c 513 if (ctx->fqdn == NULL)
515 fqdn_len = os_strlen(ctx->fqdn);
516 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 ||
519 ctx->fqdn);
527 ctx->fqdn);
739 if (ctx->fqdn == NULL) {
743 fqdn_len = os_strlen(ctx->fqdn);
744 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 ||
747 ctx->fqdn);
756 ctx->fqdn);
    [all...]
osu_client.h 38 char *fqdn; member in struct:hs20_osu_client
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiConfigStoreLegacyTest.java 96 String fqdn = passpointNetwork.FQDN; local
106 // Reset FQDN and provider friendly name so that the derived network from #read will
108 passpointNetwork.FQDN = null;
120 passpointConfig.mFqdn = fqdn;
125 passpointConfigs.put(fqdn, passpointConfig);
136 networkExtras.put(passpointNetworkId, createNetworkExtrasForPasspointConfig(fqdn));
149 passpointNetwork.FQDN = fqdn;
305 private Map<String, String> createNetworkExtrasForPasspointConfig(String fqdn) {
    [all...]
  /external/iputils/ninfod/
ninfod_name.c 155 int fqdn)
181 if (fqdn < 0)
183 fqdn = 1;
201 if (buflen < i + 1 + !(fqdn > 0))
204 if (!(fqdn > 0))
228 break; /* FQDN */
237 done = 1; /* FQDN */
  /external/libcups/cups/
http-support.c 2149 fqdn[256]; \/* FQDN of the .local name *\/ local
2362 fqdn[256]; \/* FQDN of the .local name *\/ local
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
PasspointProviderTest.java 342 * Verify that a provider is a home provider when its FQDN matches a domain name in the
373 * Verify that a provider is a home provider when its FQDN matches a domain name in the
409 * Verify that there is no match when the provider's FQDN matches a domain name in the
636 * Verify that a provider is a home provider when its FQDN, roaming consortium OI, and
687 String fqdn = "test.com"; local
700 homeSp.setFqdn(fqdn);
725 assertEquals(fqdn, wifiConfig.FQDN);
732 assertEquals(fqdn, wifiEnterpriseConfig.getDomainSuffixMatch());
750 String fqdn = "test.com"; local
811 String fqdn = "test.com"; local
859 String fqdn = "test.com"; local
909 String fqdn = "test.com"; local
951 String fqdn = "test.com"; local
990 String fqdn = "test.com"; local
1024 String fqdn = "test.com"; local
    [all...]
PasspointManagerTest.java 236 private PasspointConfiguration createTestConfigWithUserCredential(String fqdn) {
239 homeSp.setFqdn(fqdn);
282 private PasspointProvider addTestProvider(String fqdn) {
283 PasspointConfiguration config = createTestConfigWithUserCredential(fqdn);
1126 String fqdn = "test.com"; local
1179 String fqdn = "test.com"; local
1212 String fqdn = "test.com"; local
1255 String fqdn = "test.com"; local
1299 String fqdn = "test.com"; local
1326 String fqdn = "test.com"; local
    [all...]
ANQPMatcherTest.java 64 * Verify that domain name match will succeed when the specified FQDN matches a domain name
71 String fqdn = "test.com"; local
72 String[] domains = new String[] {fqdn};
74 assertTrue(ANQPMatcher.matchDomainName(element, fqdn, null, null));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
OsuServerConnection.java 196 * Returns the OSU certificate matching the FQDN of the OSU server
197 * @return X509Certificate OSU certificate matching FQDN of OSU server
204 String fqdn = mUrl.getHost(); local
217 && name.get(1).toString().equals(fqdn)) {
227 Log.e(TAG, "Unable to match certificate to " + fqdn);
ANQPMatcher.java 38 * Match the domain names in the ANQP element against the provider's FQDN and SIM credential.
44 * @param fqdn The FQDN to compare against
50 public static boolean matchDomainName(DomainNameElement element, String fqdn,
57 if (DomainMatcher.arg2SubdomainOfArg1(fqdn, domain)) {
PasspointManager.java 240 * Each provider is uniquely identified by its FQDN (Fully Qualified Domain Name).
241 * In the case when there is an existing configuration with the same FQDN
282 // Remove existing provider with the same FQDN.
298 * Remove a Passpoint provider identified by the given FQDN.
300 * @param fqdn The FQDN of the provider to remove
303 public boolean removeProvider(String fqdn) {
305 if (!mProviders.containsKey(fqdn)) {
310 mProviders.get(fqdn).uninstallCertsAndKeys();
311 mProviders.remove(fqdn);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStoreLegacy.java 226 // Ignore configuration without FQDN.
231 String fqdn = networkExtras.get(wifiConfig.networkId).get( local
236 if (passpointConfigMap == null || !passpointConfigMap.containsKey(fqdn)) {
242 LegacyPasspointConfig passpointConfig = passpointConfigMap.get(fqdn);
244 wifiConfig.FQDN = fqdn;
  /external/dnsmasq/src/
lease.c 253 if (lease->fqdn)
254 cache_add_dhcp_entry(lease->fqdn, &lease->addr, lease->expires);
422 /* If we know the fqdn, pass that. The helper will derive the
425 if (lease->fqdn)
427 lease->old_hostname = lease->fqdn;
433 lease->hostname = lease->fqdn = NULL;
469 /* Depending on mode, we check either unqualified name or FQDN. */
474 if (!new_fqdn || !lease_tmp->fqdn || !hostname_isequal(lease_tmp->fqdn, new_fqdn) )
499 lease->fqdn = new_fqdn
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
IWifiManager.aidl 72 boolean removePasspointConfiguration(in String fqdn, String packageName);
78 int matchProviderWithCurrentNetwork(String fqdn);
  /external/dhcpcd-6.8.2/
dhcpcd-definitions.conf 109 define 81 embed fqdn
113 embed domain fqdn
402 define6 39 embed fqdn
404 embed domain fqdn
448 encap 3 ip6address fqdn
  /prebuilts/go/darwin-x86/src/net/
dnsconfig_unix_test.go 219 for _, fqdn := range conf.nameList(longName) {
220 if len(fqdn) > 254 {
221 t.Errorf("got %d; want less than or equal to 254", len(fqdn))
  /prebuilts/go/linux-x86/src/net/
dnsconfig_unix_test.go 219 for _, fqdn := range conf.nameList(longName) {
220 if len(fqdn) > 254 {
221 t.Errorf("got %d; want less than or equal to 254", len(fqdn))
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
TestAccessPointBuilder.java 200 public TestAccessPointBuilder setFqdn(String fqdn) {
201 mFqdn = fqdn;
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
HomeSp.java 52 * FQDN (Fully Qualified Domain Name) of this home service provider.
56 * Set the FQDN (Fully Qualified Domain Name) associated with this home service provider.
58 * @param fqdn The FQDN to set to
60 public void setFqdn(String fqdn) {
61 mFqdn = fqdn;
64 * Get the FQDN (Fully Qualified Domain Name) associated with this home service provider.
66 * @return the FQDN associated with this home service provider
183 * List of FQDN (Fully Qualified Domain Name) of partner providers.
309 builder.append("FQDN: ").append(mFqdn).append("\n")
    [all...]
  /tools/test/connectivity/acts/tests/google/wifi/
WifiPasspointTest.py 119 """Get configured Passpoint network and delete using its FQDN."""
126 " with FQDN = %s" % passpoint_config[0])
138 4. Delete Passpoint configuration using its FQDN.
160 6. Delete Passpoint configuration using its FQDN.
202 " configuration with FQDN = %s" %
208 """Negative test to delete Passpoint profile using an unknown FQDN.
210 1. Pass an unknown FQDN for removal.
215 raise signals.TestFailure("Failed because an unknown FQDN"
226 3. Delete the current Passpoint profile using its FQDN.
228 5. Delete Passpoint configuration using its FQDN
    [all...]
  /external/iputils/
ping6.c 271 NIQUERY_OPTION("fqdn", 0, 0, niquery_option_name_handler),
283 NIQUERY_OPTION("subject-fqdn", 1, -1, niquery_option_subject_name_handler),
514 int dots, fqdn = niquery_options[index].data; local
570 if (fqdn == 0) {
571 /* guess if hostname is FQDN */
572 fqdn = dots ? 1 : -1;
576 plus non-fqdn indicator. */
607 if (fqdn < 0)
614 ni_subject_len = n + (fqdn < 0);
642 "\t\tsubject-ipv6=addr,subject-ipv4=addr,subject-name=name,subject-fqdn=name,\n
1470 int fqdn = 1; local
    [all...]

Completed in 776 milliseconds

1 2 3 4