/frameworks/base/core/jni/ |
android_net_wifi_Wifi.cpp | 208 ScopedUtfChars country(env, javaCountry); 209 if (country.c_str() == NULL) { 212 return doBooleanCommand("OK", "DRIVER COUNTRY %s", country.c_str());
|
/development/ndk/platforms/android-9/include/android/ |
configuration.h | 156 * Return the current country code set in the configuration. The output will 158 * a country is not set, they will be 0. 163 * Set the current country code in the configuration, from the first two 166 void AConfiguration_setCountry(AConfiguration* config, const char* country);
|
/external/icu4c/i18n/unicode/ |
timezone.h | 179 * given country. Some zones are affiliated with no country 182 * @param country The ISO 3166 two-letter country code, or NULL to 183 * retrieve zones not affiliated with any country. 187 static StringEnumeration* U_EXPORT2 createEnumeration(const char* country);
|
ucal.h | 534 * country. Some zones are affiliated with no country (e.g., "UTC"); 537 * @param country the ISO 3166 two-letter country code, or NULL to 538 * retrieve zones not affiliated with any country 549 ucal_openCountryTimeZones(const char* country, UErrorCode* ec); [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
config_file.c | 687 if (config->country[0] && config->country[1]) { 688 fprintf(f, "country=%c%c\n", 689 config->country[0], config->country[1]);
|
wpa_supplicant.c | 2704 char country[3]; local [all...] |
p2p_supplicant.c | [all...] |
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeech.java | 88 * Denotes the language is available for the language and country specified 95 * but not the country and variant. 293 * and YYY is the 3-letter ISO country code.</li> 333 * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are 341 * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are 350 * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are 380 public static final String KEY_PARAM_COUNTRY = "country"; [all...] |
/prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/ |
configuration.h | 156 * Return the current country code set in the configuration. The output will 158 * a country is not set, they will be 0. 163 * Set the current country code in the configuration, from the first two 166 void AConfiguration_setCountry(AConfiguration* config, const char* country);
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/ |
configuration.h | 156 * Return the current country code set in the configuration. The output will 158 * a country is not set, they will be 0. 163 * Set the current country code in the configuration, from the first two 166 void AConfiguration_setCountry(AConfiguration* config, const char* country);
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/ |
configuration.h | 156 * Return the current country code set in the configuration. The output will 158 * a country is not set, they will be 0. 163 * Set the current country code in the configuration, from the first two 166 void AConfiguration_setCountry(AConfiguration* config, const char* country);
|
/external/bluetooth/bluez/compat/ |
sdp.c | 114 req->subclass, req->country, req->parser, desc, 132 unsigned int vendor, product, version, subclass, country, parser, pos; local 152 &vendor, &product, &version, &subclass, &country, 160 req->country = country; 277 req->country = pdlist ? pdlist->val.uint8 : 0;
|
/external/wpa_supplicant_8/src/p2p/ |
p2p.c | 171 freq = p2p_channel_to_freq(p2p->cfg->country, p2p->cfg->reg_class, 209 freq = p2p_channel_to_freq(p2p->cfg->country, p2p->cfg->reg_class, 702 freq = p2p_channel_to_freq(p2p->cfg->country, reg_class, channel); 955 if (p2p_freq_to_channel(p2p->cfg->country, force_freq, 981 p2p_freq_to_channel(p2p->cfg->country, 991 p2p_freq_to_channel(p2p->cfg->country, 1003 p2p_freq_to_channel(p2p->cfg->country, [all...] |
p2p.h | 232 * country - Country code to use in P2P operations 234 char country[3]; member in struct:p2p_config 266 * numbering of the clases depends on the configured country code. 797 int p2p_set_country(struct p2p_data *p2p, const char *country); [all...] |
/external/icu4c/tools/tzcode/ |
tz2icu.cpp | 1599 string country, coord, zone; local 1726 string country = i->first; local 1732 file << country << ":intvector { "; local [all...] |
/external/icu4c/i18n/ |
timezone.cpp | 154 * rules, and country tables. There is also a meta-data resource 156 * respectively. The country count includes the non-country 'Default'. 721 TZEnumeration(const char* country) : map(NULL), len(0), pos(0) { 731 if (country) { 732 u_charsToUChars(country, uCountry, 2); 771 U_DEBUG_TZ_MSG(("Failed to load tz for region %s: %s\n", country, u_errorName(ec))); 837 TimeZone::createEnumeration(const char* country) { 838 return new TZEnumeration(country); [all...] |
/frameworks/base/tools/aapt/ |
ResourceTable.cpp | 598 config.country[0], config.country[1], 709 config.country[0], config.country[1], 820 pseudoParams.country[0] = 'Z'; 821 pseudoParams.country[1] = 'Z'; [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WifiManager.java | 763 * Set the country code. 764 * @param countryCode country code in ISO 3166 format. 769 public void setCountryCode(String country, boolean persist) { 771 mService.setCountryCode(country, persist); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
SubtypeSwitcher.java | 287 // "en_US" --> language: en & country: US 295 String country = mSystemLocale.getCountry(); local 297 + (TextUtils.isEmpty(country) ? "" : "_" + mSystemLocale.getLanguage());
|
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
ContactsSyncAdapter.java | 269 String country; field in class:ContactsSyncAdapter.Address 275 return city != null || country != null || code != null || state != null 454 work.country = getValue(); 469 home.country = getValue(); 484 other.country = getValue(); 613 work.state, work.country, work.code); 617 home.state, home.country, home.code); 621 other.state, other.country, other.code); [all...] |
/external/wpa_supplicant_8/src/ap/ |
ap_config.h | 372 char country[3]; /* first two octets: country code as described in member in struct:hostapd_config
|
ap_drv_ops.h | 64 int hostapd_set_country(struct hostapd_data *hapd, const char *country);
|
/frameworks/base/native/include/android/ |
configuration.h | 165 * Return the current country code set in the configuration. The output will 167 * a country is not set, they will be 0. 172 * Set the current country code in the configuration, from the first two 175 void AConfiguration_setCountry(AConfiguration* config, const char* country);
|
/frameworks/base/libs/utils/ |
AssetManager.cpp | 437 if (config.country[0] != 0) { 439 spec[3] = config.country[0]; 440 spec[4] = config.country[1]; 706 mConfig->country[0] = 0; 707 mConfig->country[1] = 0; 713 mConfig->country[0] = mLocale[3]; 714 mConfig->country[1] = mLocale[4]; [all...] |
/frameworks/base/telephony/java/android/telephony/ |
PhoneNumberUtils.java | 520 * - a '0' on one and a (+,00)<country code> on the other 577 // Different Country Calling Code. Must be different phone number. 1173 String country = locale.getCountry(); local [all...] |