/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-aspeed.c | 78 const char names[4][3]; member 105 .names = { "A", "B", "C", "D" }, 114 .names = { "E", "F", "G", "H" }, 123 .names = { "I", "J", "K", "L" }, 132 .names = { "M", "N", "O", "P" }, 141 .names = { "Q", "R", "S", "T" }, 150 .names = { "U", "V", "W", "X" }, 159 .names = { "Y", "Z", "AA", "AB" }, 168 .names = { "AC", "", "", "" }, 284 return bank->names[grou in have_gpio() [all...] |
H A D | gpio-brcmstb.c | 610 const char **names; in brcmstb_gpio_set_names() local 616 nstrings = of_property_count_strings(np, "gpio-line-names"); in brcmstb_gpio_set_names() 618 /* Line names not present */ in brcmstb_gpio_set_names() 621 names = devm_kcalloc(dev, MAX_GPIO_PER_BANK, sizeof(*names), in brcmstb_gpio_set_names() 623 if (!names) in brcmstb_gpio_set_names() 634 ret = of_property_read_string_index(np, "gpio-line-names", in brcmstb_gpio_set_names() 643 names[i] = name; in brcmstb_gpio_set_names() 646 bank->gc.names = names; in brcmstb_gpio_set_names() [all...] |
H A D | gpio-tegra186.c | 612 char **names; in tegra186_gpio_probe() local 666 names = devm_kcalloc(gpio->gpio.parent, gpio->gpio.ngpio, in tegra186_gpio_probe() 667 sizeof(*names), GFP_KERNEL); in tegra186_gpio_probe() 668 if (!names) in tegra186_gpio_probe() 681 names[offset + j] = name; in tegra186_gpio_probe() 687 gpio->gpio.names = (const char * const *)names; in tegra186_gpio_probe()
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-aspeed.c | 80 const char names[4][3]; member 107 .names = { "A", "B", "C", "D" }, 116 .names = { "E", "F", "G", "H" }, 125 .names = { "I", "J", "K", "L" }, 134 .names = { "M", "N", "O", "P" }, 143 .names = { "Q", "R", "S", "T" }, 152 .names = { "U", "V", "W", "X" }, 161 .names = { "Y", "Z", "AA", "AB" }, 170 .names = { "AC", "", "", "" }, 286 return bank->names[grou in have_gpio() [all...] |
/third_party/jinja2/ |
H A D | environment.py | 914 names = self.loader.list_templates() 926 names = [name for name in names if filter_func(name)] 928 return names 1015 names: t.Iterable[t.Union[str, "Template"]], 1019 """Like :meth:`get_template`, but tries loading multiple names. 1020 If none of the names can be loaded a :exc:`TemplatesNotFound` 1023 :param names: List of template names to try loading in order. 1037 If ``names`` i [all...] |
/third_party/python/Lib/test/test_capi/ |
H A D | test_misc.py | 830 names = [] 834 names.append('PyThread_get_thread_native_id') 842 names.append('Py_FrozenMain') 844 for name in names: 1381 def do_test(self, func, names): 1392 expected_calls = names * SUFFICIENT_TO_DEOPT_AND_SPECIALIZE 1403 names = ["func", "__getitem__"] 1404 self.do_test(func, names) 1412 names = ["func", "inner", "inner"] 1413 self.do_test(func, names) [all...] |
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-console.cc | 598 v8::Local<v8::Array> names; in keysCallback() 599 if (!obj->GetOwnPropertyNames(isolate->GetCurrentContext()).ToLocal(&names)) in keysCallback() 601 info.GetReturnValue().Set(names); in keysCallback() 613 v8::Local<v8::Array> names; in valuesCallback() 615 if (!obj->GetOwnPropertyNames(context).ToLocal(&names)) return; in valuesCallback() 616 v8::Local<v8::Array> values = v8::Array::New(isolate, names->Length()); in valuesCallback() 617 for (uint32_t i = 0; i < names->Length(); ++i) { in valuesCallback() 619 if (!names->Get(context, i).ToLocal(&key)) continue; in valuesCallback() 986 v8::Local<v8::Array> names; in CommandLineAPIScope() local 987 if (!m_commandLineAPI->GetOwnPropertyNames(context).ToLocal(&names)) retur in CommandLineAPIScope() 1018 v8::Local<v8::Array> names = m_installedMethods->AsArray(); ~CommandLineAPIScope() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | http_curl.c | 272 GENERAL_NAMES *names) in add_alt_names() 276 num = sk_GENERAL_NAME_num(names); in add_alt_names() 279 name = sk_GENERAL_NAME_value(names, i); in add_alt_names() 871 X509 *cert, GENERAL_NAMES **names) in parse_cert() 875 *names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); in parse_cert() 876 if (*names) in parse_cert() 877 add_alt_names(ctx, hcert, *names); in parse_cert() 883 static void parse_cert_free(struct http_cert *hcert, GENERAL_NAMES *names) in parse_cert_free() argument 902 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); in parse_cert_free() 908 GENERAL_NAMES *names; in validate_server_cert() local 271 add_alt_names(struct http_ctx *ctx, struct http_cert *cert, GENERAL_NAMES *names) add_alt_names() argument 870 parse_cert(struct http_ctx *ctx, struct http_cert *hcert, X509 *cert, GENERAL_NAMES **names) parse_cert() argument 936 GENERAL_NAMES *names; http_parse_x509_certificate() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | http_curl.c | 272 GENERAL_NAMES *names) in add_alt_names() 276 num = sk_GENERAL_NAME_num(names); in add_alt_names() 279 name = sk_GENERAL_NAME_value(names, i); in add_alt_names() 871 X509 *cert, GENERAL_NAMES **names) in parse_cert() 875 *names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); in parse_cert() 876 if (*names) in parse_cert() 877 add_alt_names(ctx, hcert, *names); in parse_cert() 883 static void parse_cert_free(struct http_cert *hcert, GENERAL_NAMES *names) in parse_cert_free() argument 902 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); in parse_cert_free() 908 GENERAL_NAMES *names; in validate_server_cert() local 271 add_alt_names(struct http_ctx *ctx, struct http_cert *cert, GENERAL_NAMES *names) add_alt_names() argument 870 parse_cert(struct http_ctx *ctx, struct http_cert *hcert, X509 *cert, GENERAL_NAMES **names) parse_cert() argument 936 GENERAL_NAMES *names; http_parse_x509_certificate() local [all...] |
/kernel/linux/linux-6.6/security/selinux/include/ |
H A D | conditional.h | 17 u32 *len, char ***names, int **values);
|
/kernel/linux/linux-5.10/drivers/block/ |
H A D | virtio_blk.c | 496 const char **names; in init_vq() local 514 names = kmalloc_array(num_vqs, sizeof(*names), GFP_KERNEL); in init_vq() 517 if (!names || !callbacks || !vqs) { in init_vq() 525 names[i] = vblk->vqs[i].name; in init_vq() 529 err = virtio_find_vqs(vdev, num_vqs, vqs, callbacks, names, &desc); in init_vq() 542 kfree(names); in init_vq()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | ICUJDKCompare.java | 148 } else if (arg.equals("-names:")) { in setup() 192 String[] names = null; in setup() 205 names = (String[])nl.toArray(new String[nl.size()]); in setup() 220 } else { // a list of names separated by semicolons in setup() 221 names = namelist.split("\\s*;\\s*"); in setup() 223 processPairInfo(names); in setup() 231 private void processPairInfo(String[] names) { in processPairInfo() argument 234 for (int i = 0; i < names.length; ++i) { in processPairInfo() 235 String name = names[i]; in processPairInfo()
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | jcommander-1.27.jar | ... annotation.Annotation {
public abstract java.lang.String[] names ()
public abstract boolean required ()
public abstract java.lang. ... |
/third_party/skia/third_party/externals/freetype/builds/mac/ |
H A D | ftmac.c | 51 codes to ps glyph names to glyph ID's...) 774 unsigned char* names[64]; in parse_fond() local 787 names[i] = p; in parse_fond() 788 p += names[i][0]; in parse_fond() 793 size_t ps_name_len = (size_t)names[0][0]; in parse_fond() 798 ft_memcpy(ps_name, names[0] + 1, ps_name_len); in parse_fond() 804 unsigned char* suffixes = names[style->indexes[face_index] - 1]; in parse_fond() 813 if ( j < string_count && ( s = names[j] ) != NULL ) in parse_fond()
|
/kernel/linux/linux-5.10/security/selinux/include/ |
H A D | conditional.h | 17 u32 *len, char ***names, int **values);
|
/kernel/linux/linux-5.10/security/apparmor/include/ |
H A D | perms.h | 138 void aa_audit_perm_names(struct audit_buffer *ab, const char * const *names, 141 u32 chrsmask, const char * const *names, u32 namesmask);
|
/third_party/lzma/CPP/Windows/ |
H A D | SecurityUtils.h | 128 PLSA_REFERENCED_DOMAIN_LIST* referencedDomains, PLSA_TRANSLATED_NAME* names)
in LookupSids() 129 { return LsaLookupSids(_handle, count, sids, referencedDomains, names); }
in LookupSids()
|
/third_party/jerryscript/targets/mbedos5/tools/ |
H A D | generate_pins.py | 96 self.names = filter_names or [] 114 if node.declname in self.names:
|
/third_party/mesa3d/src/intel/isl/ |
H A D | gen_format_layout.py | 247 names = {f.name for f in formats} 261 if rgb_name in names:
|
/third_party/python/Tools/scripts/ |
H A D | byext.py | 27 names = os.listdir(dir) 32 for name in sorted(names):
|
H A D | objgraph.py | 8 # - which names are used but not defined in the set (and used where), 9 # - which names are defined in the set (and where), 56 # Global variables mapping defined/undefined names to files and back. 85 # Print all names that were undefined in some module and where they are 104 # Print for each module the names of the other modules that use it. 124 # Print undefined names and where they are used. 139 # Print warning messages about names defined in more than one file. 144 names = sorted(def2file.keys()) 145 for name in names:
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | test_reflow.py | 69 def getPath(*names): 70 return os.path.join(testsDir, *names)
|
/kernel/linux/linux-5.10/drivers/usb/gadget/ |
H A D | configfs.h | 13 char **names,
|
/kernel/linux/linux-5.10/include/linux/platform_data/ |
H A D | pca953x.h | 28 const char *const *names; member
|
/kernel/linux/linux-5.10/include/linux/gpio/ |
H A D | gpio-reg.h | 10 const char *const *names, struct irq_domain *irqdom, const int *irqs);
|