Home
last modified time | relevance | path

Searched refs:name (Results 1176 - 1200 of 19400) sorted by relevance

1...<<41424344454647484950>>...776

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dxml-utils.c20 const char *name; in get_node_uri_iter() local
29 name = xml_node_get_localname(ctx, node); in get_node_uri_iter()
30 if (strcasecmp(name, uri) == 0) in get_node_uri_iter()
68 const char *name; in get_node_iter() local
76 name = xml_node_get_localname(ctx, node); in get_node_iter()
77 if (os_strcasecmp(name, path) == 0) in get_node_iter()
123 xml_node_t * node_from_file(struct xml_node_ctx *ctx, const char *name) in node_from_file() argument
129 buf = os_readfile(name, &len); in node_from_file()
232 const char *name; in node_to_tnds() local
238 name in node_to_tnds()
282 const char *name; mo_to_tnds() local
309 get_first_child_node(struct xml_node_ctx *ctx, xml_node_t *node, const char *name) get_first_child_node() argument
388 const char *name; tnds_to_mo_iter() local
429 const char *name; tnds_to_mo() local
[all...]
/third_party/backends/frontend/
H A Dtstbackend.c45 {"device-name", required_argument, NULL, 'd'},
392 "invalid capabilities for option [%d, %s] (%x)", option_num, opt->name, opt->cap); in test_options()
394 "option [%d, %s] must have a title", option_num, opt->name); in test_options()
396 "option [%d, %s] must have a description", option_num, opt->name); in test_options()
408 check(INF, (opt->name == NULL || *opt->name == 0), in test_options()
409 "option [%d, %s] has a name", option_num, opt->name); in test_options()
411 "option [%d, %s], group option is settable", option_num, opt->name); in test_options()
414 check(ERR, (opt->name ! in test_options()
860 get_optdesc_by_name(SANE_Handle device, const char *name, int *option_num) get_optdesc_by_name() argument
[all...]
/third_party/elfutils/libebl/
H A Deblauxvinfo.c78 const char *name, *format; member
81 #define TYPE(name, fmt) [AT_##name] = { #name, fmt },
88 ebl_auxv_info (Ebl *ebl, GElf_Xword a_type, const char **name, in ebl_auxv_info() argument
91 int result = ebl->auxv_info (a_type, name, format); in ebl_auxv_info()
92 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL) in ebl_auxv_info()
95 *name = auxv_types[a_type].name; in ebl_auxv_info()
/third_party/NuttX/fs/vfs/
H A Dfs_rmdir.c39 static int check_target(struct Vnode *vnode, char *name) in check_target() argument
96 char *name = NULL; in do_rmdir() local
121 name = strrchr(fullpath, '/'); in do_rmdir()
127 name = strrchr(pathname, '/'); in do_rmdir()
129 if (name == NULL) in do_rmdir()
131 name = (char *)pathname; in do_rmdir()
135 name++; in do_rmdir()
145 ret = check_target(vnode, name); in do_rmdir()
157 ret = vnode->vop->Rmdir(vnode->parent, vnode, name); in do_rmdir()
/third_party/mesa3d/bin/
H A Dmeson-options.py12 print('name: ' + option_name)
22 for (name, value) in oi.options.items():
24 describe_option(name,
29 describe_option(name,
34 describe_option(name,
39 describe_option(name,
45 describe_option(name,
52 describe_option(name,
57 describe_option(name,
62 print(name
[all...]
/third_party/mesa3d/src/asahi/lib/
H A Dpool.h90 #define AGX_DESC_ARRAY(count, name) \
92 .size = MALI_ ## name ## _LENGTH, \
93 .align = MALI_ ## name ## _ALIGN, \
97 #define AGX_DESC(name) AGX_DESC_ARRAY(1, name)
120 #define agx_pool_alloc_desc(pool, name) \
121 agx_pool_alloc_descs(pool, AGX_DESC_AGGREGATE(AGX_DESC(name)))
123 #define agx_pool_alloc_desc_array(pool, count, name) \
124 agx_pool_alloc_descs(pool, AGX_DESC_AGGREGATE(AGX_DESC_ARRAY(count, name)))
/third_party/node/deps/v8/third_party/test262-harness/src/
H A DparseTestRecord.py41 def yamlAttrParser(testRecord, attrs, name, onerror = print):
44 onerror("Failed to parse yaml in name %s" % name)
71 def parseTestRecord(src, name, onerror = print):
80 onerror("Missing frontmatter: %s" % name)
88 onerror("Unexpected license after frontmatter: %s" % name)
93 onerror("Unexpected test content between license and frontmatter: %s" % name)
107 yamlAttrParser(testRecord, attrs, name, onerror)
110 if header is None and "generated" not in testRecord and "hashbang" not in name:
111 onerror("No license found in: %s" % name)
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/resources/
H A Dfuzz_library.js6 function __isPropertyOfType(obj, name, type) {
9 desc = Object.getOwnPropertyDescriptor(obj, name);
25 for (let name of Object.getOwnPropertyNames(obj)) {
26 if (__isPropertyOfType(obj, name, type))
27 properties.push(name);
33 .forEach (name => {
34 if (name !== 'constructor') {
35 if (__isPropertyOfType(proto, name, type))
36 properties.push(name);
/third_party/node/test/parallel/
H A Dtest-crypto-dh-errors.js14 name: 'RangeError',
21 name: 'RangeError',
30 name: 'Error',
36 name: 'Error',
45 name: 'Error',
57 name: 'Error',
74 name: 'TypeError',
84 name: 'TypeError',
94 name: 'Error',
/third_party/musl/src/network/
H A Dlookup_ipliteral.c12 int __lookup_ipliteral(struct address buf[static 1], const char *name, int family) in __lookup_ipliteral() argument
16 if (__inet_aton(name, &a4) > 0) { in __lookup_ipliteral()
31 char *p = strchr(name, '%'), *z; in __lookup_ipliteral()
33 if (p && p-name < 64) { in __lookup_ipliteral()
34 memcpy(tmp, name, p-name); in __lookup_ipliteral()
35 tmp[p-name] = 0; in __lookup_ipliteral()
36 name = tmp; in __lookup_ipliteral()
39 if (inet_pton(AF_INET6, name, &a6) <= 0) in __lookup_ipliteral()
/third_party/node/deps/v8/src/d8/
H A Dd8-js.cc51 if (x.constructor && x.constructor.name === "Array") {
67 var name = names[i]; variable
68 var desc = Object.getOwnPropertyDescriptor(x, name);
70 if (typeof name === 'symbol') name = "[" + Stringify(name) + "]";
72 props.push(name + ": " + Stringify(desc.value, depth - 1));
76 props.push("get " + name + getter.slice(getter.indexOf('(')));
80 props.push("set " + name + setter.slice(setter.indexOf('(')));
/third_party/mesa3d/src/gallium/auxiliary/os/
H A Dos_process.c47 * Return the name of the current process.
48 * \param procname returns the process name
55 const char *name; in os_get_process_name() local
58 * override the normal process name query. in os_get_process_name()
60 name = os_get_option("GALLIUM_PROCESS_NAME"); in os_get_process_name()
62 if (!name) { in os_get_process_name()
80 name = lpProcessName; in os_get_process_name()
85 name = info.name; in os_get_process_name()
87 name in os_get_process_name()
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Djson.h52 const pa_json_object* pa_json_object_get_object_member(const pa_json_object *o, const char *name);
62 /** @{ \name Write functions */
80 void pa_json_encoder_begin_member_object(pa_json_encoder *encoder, const char *name);
86 void pa_json_encoder_begin_member_array(pa_json_encoder *encoder, const char *name);
92 void pa_json_encoder_add_member_null(pa_json_encoder *encoder, const char *name);
96 void pa_json_encoder_add_member_bool(pa_json_encoder *encoder, const char *name, bool value);
100 void pa_json_encoder_add_member_string(pa_json_encoder *encoder, const char *name, const char *value);
104 void pa_json_encoder_add_member_int(pa_json_encoder *encoder, const char *name, int64_t value);
108 void pa_json_encoder_add_member_double(pa_json_encoder *encoder, const char *name, double value, int precision);
112 void pa_json_encoder_add_member_raw_json(pa_json_encoder *encoder, const char *name, cons
[all...]
/third_party/python/Lib/
H A Dsignal.py9 lambda name:
10 name.isupper()
11 and (name.startswith('SIG') and not name.startswith('SIG_'))
12 or name.startswith('CTRL_'))
16 lambda name: name in ('SIG_DFL', 'SIG_IGN'))
21 lambda name: name in ('SIG_BLOCK', 'SIG_UNBLOCK', 'SIG_SETMASK'))
/third_party/skia/third_party/externals/tint/src/ast/
H A Dcall_expression.cc25 CallExpression::Target ToTarget(const IdentifierExpression* name) { in ToTarget() argument
27 target.name = name; in ToTarget()
39 const IdentifierExpression* name, in CallExpression()
41 : Base(pid, src), target(ToTarget(name)), args(a) { in CallExpression()
42 TINT_ASSERT(AST, name); in CallExpression()
43 TINT_ASSERT_PROGRAM_IDS_EQUAL_IF_VALID(AST, name, program_id); in CallExpression()
71 return target.name in Clone()
72 ? ctx->dst->create<CallExpression>(src, ctx->Clone(target.name), p) in Clone()
37 CallExpression(ProgramID pid, const Source& src, const IdentifierExpression* name, ExpressionList a) CallExpression() argument
/third_party/typescript/tests/baselines/reference/
H A DdiscriminantsAndPrimitives.js6 name: string;
18 x.name;
27 x.name;
36 x.name;
45 x.name;
89 x.name;
97 x.name;
105 x.name;
113 x.name;
H A DobjectLiteralExcessProperties.js40 const obj1: T = { name: "test" };
42 const obj2: T & { prop: boolean } = { name: "test", prop: true }; property
44 const obj3: T | { prop: boolean } = { name: "test", prop: true }; property
46 const obj4: T & { prop: boolean } | { name: string } = { name: "test", prop: true }; property
69 var obj1 = { name: "test" };
71 var obj2 = { name: "test", prop: true };
73 var obj3 = { name: "test", prop: true };
75 var obj4 = { name: "test", prop: true };
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DMessageBuilderContext.php17 // * Neither the name of Google Inc. nor the names of its
54 private function getFieldDescriptor($name, $label, $type,
58 $field->setName($name);
59 $camel_name = implode('', array_map('ucwords', explode('_', $name)));
67 // So we use the type name as place holder and will replace it with the
83 public function optional($name, $type, $number, $type_name = null)
86 $name,
94 public function repeated($name, $type, $number, $type_name = null)
97 $name,
105 public function required($name,
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/
H A Dtest_util.cc31 TimeZone LoadTimeZone(const std::string& name) { in LoadTimeZone() argument
33 ABSL_RAW_CHECK(LoadTimeZone(name, &tz), name.c_str()); in LoadTimeZone()
54 const char* name; member
107 const std::string& name, in TestFactory()
109 const std::string& name)>& /*fallback_factory*/) { in TestFactory()
111 if (name == zoneinfo.name) { in TestFactory()
117 ABSL_RAW_LOG(FATAL, "Unexpected time zone \"%s\" in test", name.c_str()); in TestFactory()
106 TestFactory( const std::string& name, const std::function<std::unique_ptr<cctz::ZoneInfoSource>( const std::string& name)>& ) TestFactory() argument
/third_party/vk-gl-cts/scripts/egl/
H A Dgtf_wrapper.py40 return "#define\t%s\t%s" % (command.name, getMangledName(command.name))
45 getMangledName(command.name),
68 arguments.append("(void*)" + param.name)
70 arguments.append(param.name)
74 mangledName = "eglw" + command.name[3:],
78 memberName = getFunctionMemberName(command.name),
82 if command.name == "glGetError":
91 return "#define %s\t%s" % (enum.name, enumValue(enum))
H A Dlibrary.py36 getFunctionMemberName(command.name),
42 getFunctionMemberName(command.name),
53 mangledName = getFunctionMemberName(command.name),
56 memberName = getFunctionMemberName(command.name),
61 getFunctionMemberName(command.name),
62 command.name,
63 command.name)
80 return "\t{ \"%s\",\t(deFunctionPtr)%s }," % (command.name, command.name)
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dbgscan.c29 const char *name) in bgscan_init()
38 params = os_strchr(name, ':'); in bgscan_init()
41 nlen = os_strlen(name); in bgscan_init()
43 nlen = params - name; in bgscan_init()
48 if (os_strncmp(name, bgscan_modules[i]->name, nlen) == 0) { in bgscan_init()
56 "matching the parameter '%s'", name); in bgscan_init()
65 "parameters '%s'", ops->name, params); in bgscan_init()
75 wpa_s->bgscan->name); in bgscan_deinit()
28 bgscan_init(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, const char *name) bgscan_init() argument
/third_party/vk-gl-cts/framework/common/
H A DtcuFactoryRegistry.hpp54 AbstractFactory* getFactoryByName (const std::string& name);
55 const AbstractFactory* getFactoryByName (const std::string& name) const;
70 FactoryBase (const std::string& name, const std::string& description);
94 Factory* getFactoryByName (const std::string& name);
95 const Factory* getFactoryByName (const std::string& name) const;
108 inline Factory* FactoryRegistry<Factory>::getFactoryByName (const std::string& name) in getFactoryByName() argument
110 return static_cast<Factory*>(m_registry.getFactoryByName(name)); in getFactoryByName()
114 inline const Factory* FactoryRegistry<Factory>::getFactoryByName (const std::string& name) const in getFactoryByName()
116 return static_cast<const Factory*>(m_registry.getFactoryByName(name)); in getFactoryByName()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dbgscan.c29 const char *name) in bgscan_init()
38 params = os_strchr(name, ':'); in bgscan_init()
41 nlen = os_strlen(name); in bgscan_init()
43 nlen = params - name; in bgscan_init()
48 if (os_strncmp(name, bgscan_modules[i]->name, nlen) == 0) { in bgscan_init()
56 "matching the parameter '%s'", name); in bgscan_init()
65 "parameters '%s'", ops->name, params); in bgscan_init()
75 wpa_s->bgscan->name); in bgscan_deinit()
28 bgscan_init(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, const char *name) bgscan_init() argument
/third_party/ffmpeg/libavutil/
H A Dsamplefmt.c29 char name[8]; member
37 [AV_SAMPLE_FMT_U8] = { .name = "u8", .bits = 8, .planar = 0, .altform = AV_SAMPLE_FMT_U8P },
38 [AV_SAMPLE_FMT_S16] = { .name = "s16", .bits = 16, .planar = 0, .altform = AV_SAMPLE_FMT_S16P },
39 [AV_SAMPLE_FMT_S32] = { .name = "s32", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_S32P },
40 [AV_SAMPLE_FMT_S64] = { .name = "s64", .bits = 64, .planar = 0, .altform = AV_SAMPLE_FMT_S64P },
41 [AV_SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32, .planar = 0, .altform = AV_SAMPLE_FMT_FLTP },
42 [AV_SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64, .planar = 0, .altform = AV_SAMPLE_FMT_DBLP },
43 [AV_SAMPLE_FMT_U8P] = { .name = "u8p", .bits = 8, .planar = 1, .altform = AV_SAMPLE_FMT_U8 },
44 [AV_SAMPLE_FMT_S16P] = { .name = "s16p", .bits = 16, .planar = 1, .altform = AV_SAMPLE_FMT_S16 },
45 [AV_SAMPLE_FMT_S32P] = { .name
58 av_get_sample_fmt(const char *name) av_get_sample_fmt() argument
[all...]

Completed in 11 milliseconds

1...<<41424344454647484950>>...776