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

1 2

  /external/dhcpcd/
android.conf 9 option subnet_mask, routers, domain_name_servers, domain_name, domain_search
dhcpcd.conf 12 option domain_name_servers, domain_name, domain_search, host_name
  /external/parameter-framework/test/functional-tests/PfwTestCase/Domains/
tDomain_Rules.py 55 self.domain_name = "domain_test"
94 log.I("New domain creation for testing purpose : %s" % (self.domain_name))
96 out, err = self.pfw.sendCmd("createDomain",self.domain_name, "")
98 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (self.domain_name)
100 log.I("Domain %s created" % (self.domain_name))
103 log.I("New configuration %s creation for domain %s for testing purpose" % (self.conf_1,self.domain_name))
105 out, err = self.pfw.sendCmd("createConfiguration",self.domain_name,self.conf_1)
109 log.I("Configuration %s created for domain %s" % (self.conf_1,self.domain_name))
110 log.I("New configuration %s creation for domain %s for testing purpose" % (self.conf_2,self.domain_name))
112 out, err = self.pfw.sendCmd("createConfiguration",self.domain_name,self.conf_2
    [all...]
tDomain_Elements.py 54 self.domain_name = "Domain_0"
84 log.I("Listing initial domain %s elements" % (self.domain_name))
85 out, err = self.pfw.sendCmd("listDomainElements",str(self.domain_name))
98 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr_init))
101 log.I("Adding a new domain element to domain %s" % (self.domain_name))
102 out, err = self.pfw.sendCmd("addElement", str(self.domain_name), str(self.elem_1_path))
105 log.I("Adding a new domain element to domain %s" % (self.domain_name))
106 out, err = self.pfw.sendCmd("addElement", str(self.domain_name), str(self.elem_2_path))
109 log.I("New domain elements %s and %s added to domain %s" % (self.elem_1_path, self.elem_2_path, self.domain_name))
112 log.I("Removing domain element %s from domain %s" % (self.elem_1_path,self.domain_name))
    [all...]
tDomain_Configuration.py 58 self.domain_name = "domain_test"
89 log.I("New domain creation for testing purpose : %s" % (self.domain_name))
91 out, err = self.pfw.sendCmd("createDomain",self.domain_name, "")
93 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (self.domain_name)
95 log.I("Domain %s created" % (self.domain_name))
100 log.I("New configuration %s creation for domain %s" % (new_conf_name,self.domain_name))
102 out, err = self.pfw.sendCmd("createConfiguration",self.domain_name,new_conf_name)
106 log.I("Configuration %s created for domain %s" % (new_conf_name,self.domain_name))
109 log.I("Configurations listing for domain %s" % (self.domain_name))
111 out, err = self.pfw.sendCmd("listConfigurations",self.domain_name, "")
    [all...]
tDomain_Configuration_Backup.py 54 self.domain_name = "Domain_0"
81 log.I("restoring configuration %s from domain %s" % (self.conf_1, self.domain_name))
82 out, err = self.pfw.sendCmd("restoreConfiguration", self.domain_name, self.conf_1)
83 assert err == None, "Error when restoring configuration %s from domain %s : %s" % (self.conf_1, self.domain_name, err)
88 log.I("saved parameter %s value on %s from domain %s = %s" % (self.param_name, self.conf_1, self.domain_name, Param_saved_1))
91 log.I("modifying parameter %s value on configuration %s from domain %s" % (self.param_name, self.conf_1, self.domain_name))
97 log.I("saving configuration %s from domain %s" % (self.conf_1, self.domain_name))
98 out, err = self.pfw.sendCmd("saveConfiguration", self.domain_name, self.conf_1)
99 assert err == None, "Error when saving configuration %s from domain %s : %s" % (self.conf_1, self.domain_name, err)
104 log.I("new saved parameter %s value on %s from domain %s = %s" % (self.param_name, self.conf_1, self.domain_name, Param_saved_1)
    [all...]
tDomain_Elements_Sequences.py 53 self.domain_name = "Domain_0"
81 log.I("Working on domain %s" % (self.domain_name))
82 log.I("Adding a new domain element to domain %s" % (self.domain_name))
83 out, err = self.pfw.sendCmd("addElement", str(self.domain_name), str(self.elem_1_path))
86 log.I("Adding a new domain element to domain %s" % (self.domain_name))
87 out, err = self.pfw.sendCmd("addElement", str(self.domain_name), str(self.elem_2_path))
90 log.I("New domain elements %s and %s added to domain %s" % (self.elem_1_path, self.elem_2_path, self.domain_name))
94 out, err = self.pfw.sendCmd("getElementSequence", self.domain_name, self.configuration)
100 out, err = self.pfw.sendCmd("setElementSequence", self.domain_name, self.configuration, self.elem_2_path, self.elem_0_path, self.elem_1_path)
104 out, err = self.pfw.sendCmd("getElementSequence", self.domain_name, self.configuration
    [all...]
tDomain_rename.py 53 self.domain_name = "domain_white"
78 log.I("New domain creation : %s" % (self.domain_name))
80 out, err = self.pfw.sendCmd("createDomain",self.domain_name, "")
82 assert err == None, "ERROR : command [createDomain] - ERROR while creating domain %s" % (self.domain_name)
84 log.I("Domain %s created" % (self.domain_name))
111 old_name = self.domain_name
167 log.I("New domain creation : %s" % (self.domain_name))
169 out, err = self.pfw.sendCmd("createDomain",self.domain_name, "")
171 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (self.domain_name)
173 log.I("command Domain %s created" % (self.domain_name))
    [all...]
tDomain_creation_deletion.py 80 domain_name = 'Test_Domain'
81 out, err = self.pfw.sendCmd("createDomain",domain_name, "")
83 assert err == None, "ERROR : command [createDomain] - Error while creating domain %s" % (domain_name)
109 domain_name = 'Test_Domain'
110 out, err = self.pfw.sendCmd("createDomain",domain_name, "")
137 domain_name = f_Domains.readline().strip('\n'),
138 assert domain_backup_name==domain_name, "ERROR : Error while reading domain %s" % (domain_backup_name)
187 domain_name = 'Wrong_Domain_Name'
188 out, err = self.pfw.sendCmd("deleteDomain",domain_name, "")
215 domain_name = f_Domains.readline().strip('\n')
    [all...]
tDomain_Configuration_Selection.py 171 domain_name = "".join([self.new_domain_name, "_", str(domain+1), "[<none>]"])
173 log.I("Checking that domain %s is set to configuration : %s" % (domain_name,config))
175 if domain_name in line:
176 line = line.replace(domain_name,'')
180 assert line == config, log.F("Domain %s - Expected configuration : %s, found : %s" % (domain_name,config,line))
181 log.I("Domain %s - configuration correctly set to %s" % (domain_name,line))
  /external/parameter-framework/test/functional-tests/PfwTestCase/Functions/
tFunction_Export_Import_Domains.py 150 domain_name=domain_basename+str(index+1)
151 log.I("Listing config for domain %s"%(domain_name))
152 out, err = self.pfw.sendCmd("listConfigurations",domain_name,"")
153 assert err == None, log.E("Command [listConfigurations %s] : %s"%(domain_name,err))
154 log.I("Command [listConfigurations %s] - correctly executed"%(domain_name))
165 assert config_nbr==self.nb_conf_per_domains_in_reference_xml[index], log.F("Number of listed config for %s is not compliant with the file %s - expected : %s - found : %s"%(domain_name, self.reference_xml,self.nb_conf_per_domains_in_reference_xml[index], domains_nbr))
173 domain_name=domain_basename+str(index_domain+1)
175 log.I("Get rule for domain %s - conf %s"%(domain_name,conf_name))
176 out, err = self.pfw.sendCmd("getRule",domain_name,conf_name)
177 assert err == None, log.E("Command [getRules %s %s] : %s"%(domain_name,conf_name,err)
    [all...]
tFunction_setParameter.py 50 self.domain_name = "Domain_0"
tFunction_listingFunctions.py 66 self.domain_name = "Domain_0"
214 out, err = self.pfw.sendCmd("listDomainElements",self.domain_name)
216 assert out != "", log.F("Fail when listDomainElements %s: stdout is empty"%(self.domain_name))
237 out, err = self.pfw.sendCmd("listConfigurations",self.domain_name)
239 assert out != "", log.F("Fail when listConfigurations %s: stdout is empty"%(self.domain_name))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.x 77 bp_machine_name_t domain_name;
bootparam_prot.h 54 bp_machine_name_t domain_name; member in struct:bp_whoami_res
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.x 77 bp_machine_name_t domain_name;
bootparam_prot.h 54 bp_machine_name_t domain_name; member in struct:bp_whoami_res
  /packages/apps/Settings/src/com/android/settings/applications/
AppDomainsPreference.java 62 final TextView domainName = (TextView) view.findViewById(R.id.domain_name);
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 36 struct wpabuf *domain_name; member in struct:wpa_bss_anqp
interworking.c 1224 bss->anqp->domain_name : NULL);
1255 bss->anqp->domain_name : NULL);
1305 bss->anqp->domain_name : NULL);
    [all...]
bss.c 95 ANQP_DUP(domain_name);
166 wpabuf_free(anqp->domain_name);
    [all...]
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 189 if (hapd->conf->domain_name)
439 if (hapd->conf->domain_name) {
442 wpabuf_put_data(buf, hapd->conf->domain_name,
803 hapd->conf->domain_name != NULL, qi);
    [all...]
ap_config.h 476 u8 *domain_name; member in struct:hostapd_bss_config
ap_config.c 524 os_free(conf->domain_name);
  /external/wpa_supplicant_8/hostapd/
config_file.c     [all...]

Completed in 561 milliseconds

1 2