/third_party/lwip/src/include/lwip/ |
H A D | dns.h | 22 * 3. The name of the author may not be used to endorse or promote 75 const char *name; member 80 #define DNS_LOCAL_HOSTLIST_ELEM(name, addr_init) {name, addr_init, NULL} 102 * @param name pointer to the name that was looked up. 104 * or NULL if the name could not be found (or on any other error). 107 typedef void (*dns_found_callback)(const char *name, const ip_addr_t *ipaddr, void *callback_arg);
|
/third_party/lzma/C/ |
H A D | 7zFile.h | 40 WRes InFile_Open(CSzFile *p, const char *name);
41 WRes OutFile_Open(CSzFile *p, const char *name);
44 WRes InFile_OpenW(CSzFile *p, const WCHAR *name);
45 WRes OutFile_OpenW(CSzFile *p, const WCHAR *name);
|
/third_party/node/deps/openssl/config/ |
H A D | generate_headers.pl | 37 my $include = $include_tmpl->fill_in(HASH => { name => $header_name }); 46 HASH => { name => $header_name }); 53 HASH => { asmdir => 'asm', incdir => $inc_dir, name => $header_name }); 62 name => $header_name });
|
/third_party/musl/libc-test/src/functionalext/supplement/passwd/ |
H A D | getspnam_r.c | 23 * @tc.name : getspnam_r_0100 43 * @tc.name : getspnam_r_0200 44 * @tc.desc : Buffer size not be able to hold name.(normal: buffer_size > strlen(name)+100) 59 * @tc.name : getspnam_r_0300 60 * @tc.desc : Test the function of getspnam_r with invalid input(name). 75 * @tc.name : getspnam_r_0400 76 * @tc.desc : The length of name is greater than the NAME_MAX. 85 char name[300]= {0}; in getspnam_r_0400() local 86 memset(name, in getspnam_r_0400() [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | setdomainname.c | 22 const char name[] = "www.example.com"; variable 25 * @tc.name : setdomainname_0100 26 * @tc.desc : set NIS domain name 31 // store current NIS domain name in setdomainname_0100() 39 result = setdomainname(name, strlen(name)); in setdomainname_0100() 51 if (strcmp(buf, name)) { in setdomainname_0100() 55 // restore NIS domain name in setdomainname_0100() 64 * @tc.name : setdomainname_0200 65 * @tc.desc : set an empty NIS domain name [all...] |
H A D | sethostname.c | 22 const char name[] = "www.example.com"; variable 25 * @tc.name : sethostname_0100 39 result = sethostname(name, strlen(name)); in sethostname_0100() 51 if (strcmp(buf, name)) { in sethostname_0100() 64 * @tc.name : sethostname_0200 103 * @tc.name : sethostname_0300
|
/third_party/node/deps/openssl/openssl/providers/common/der/ |
H A D | der_rsa_sig.c | 27 #define MD_with_RSA_CASE(name, var) \ 28 case NID_##name: \ 29 var = ossl_der_oid_##name##WithRSAEncryption; \ 30 var##_sz = sizeof(ossl_der_oid_##name##WithRSAEncryption); \
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | evp_utils.c | 37 #define PARAM_FUNC(name, func, type, err) \ 38 int name (const type *obj, OSSL_PARAM params[]) \ 44 #define PARAM_CTX_FUNC(name, func, type, err) \ 45 int name (const type *obj, void *algctx, OSSL_PARAM params[]) \
|
/third_party/python/Tools/scripts/ |
H A D | parseentities.py | 9 entity name to character or numeric entity. 29 name,charcode,comment = m.groups() 30 d[name] = charcode,comment 38 for name, (charcode,comment) in items: 48 f.write(" '%s':\t%s, \t# %s\n" % (name,charcode,comment))
|
/third_party/openssl/test/ |
H A D | confdump.c | 17 static void dump_section(const char *name, const CONF *cnf) in dump_section() argument 19 STACK_OF(CONF_VALUE) *sect = NCONF_get_section(cnf, name); in dump_section() 22 printf("[ %s ]\n", name); in dump_section() 26 printf("%s = %s\n", cv->name, cv->value); in dump_section()
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_clean.py | 22 for name, path in dirs: 24 setattr(cmd, name, path) 25 if name == 'build_base': 36 for name, path in dirs:
|
/third_party/openssl/crypto/evp/ |
H A D | evp_utils.c | 37 #define PARAM_FUNC(name, func, type, err) \ 38 int name (const type *obj, OSSL_PARAM params[]) \ 44 #define PARAM_CTX_FUNC(name, func, type, err) \ 45 int name (const type *obj, void *algctx, OSSL_PARAM params[]) \
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawTestCaseUtil.hpp | 59 InstanceFactory (tcu::TestContext& testCtx, const std::string& name, typename Instance::TestSpec testSpec) in InstanceFactory() argument 60 : TestCase (testCtx, name) in InstanceFactory() 66 InstanceFactory (tcu::TestContext& testCtx, const std::string& name, typename Instance::TestSpec testSpec, const Support& support) in InstanceFactory() argument 67 : TestCase (testCtx, name) in InstanceFactory()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/ |
H A D | FlagSamplersWithTexelFetch.cpp | 42 if (node->getFunction()->name() != "texelFetch" && 43 node->getFunction()->name() != "texelFetchOffset") 59 if (samplerVariable.name() == uniform.name)
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | AtomicCounterFunctionHLSL.cpp | 32 ImmutableString AtomicCounterFunctionHLSL::useAtomicCounterFunction(const ImmutableString &name) in useAtomicCounterFunction() argument 40 if (kAtomicCounter == name) in useAtomicCounterFunction() 45 else if (kAtomicCounterIncrement == name) in useAtomicCounterFunction() 50 else if (kAtomicCounterDecrement == name) in useAtomicCounterFunction()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDeviceMemoryExternalLinux.hpp | 60 char name[40]; variable 61 snprintf(name, sizeof(name), "SwiftShader.Memory.%d", ++counter); 62 if(!memfd.allocate(name, allocationSize))
|
/third_party/openssl/providers/common/der/ |
H A D | der_rsa_sig.c | 27 #define MD_with_RSA_CASE(name, var) \ 28 case NID_##name: \ 29 var = ossl_der_oid_##name##WithRSAEncryption; \ 30 var##_sz = sizeof(ossl_der_oid_##name##WithRSAEncryption); \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCSymbolXCOFF.h | 55 const StringRef name = getName(); in getUnqualifiedName() local 56 if (name.back() == ']') { in getUnqualifiedName() 58 std::tie(lhs, rhs) = name.rsplit('['); in getUnqualifiedName() 62 return name; in getUnqualifiedName()
|
/third_party/skia/tools/viewer/ |
H A D | SKPSlide.cpp | 14 SKPSlide::SKPSlide(const SkString& name, const SkString& path) in SKPSlide() argument 15 : SKPSlide(name, SkStream::MakeFromFile(path.c_str())) { in SKPSlide() 18 SKPSlide::SKPSlide(const SkString& name, std::unique_ptr<SkStream> stream) in SKPSlide() argument 20 fName = name; in SKPSlide()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | spreadExpressionContextualType.js | 5 name: string; 9 name: string; 47 name: string;
50 name: string;
|
/third_party/skia/third_party/externals/expat/expat/examples/ |
H A D | elements.c | 3 the name of each element to standard output indenting child 59 startElement(void *userData, const XML_Char *name, const XML_Char **atts) { in startElement() argument 66 printf("%" XML_FMT_STR "\n", name); in startElement() 71 endElement(void *userData, const XML_Char *name) { in endElement() argument 73 (void)name; in endElement()
|
/third_party/skia/third_party/externals/expat/expat/tests/ |
H A D | minicheck.h | 84 const char *name; member 89 const char *name; member 107 Suite *suite_create(const char *name); 108 TCase *tcase_create(const char *name);
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/FieldDescriptorProto/ |
H A D | Type.php | 130 public static function name($value) function 134 'Enum %s has no name defined for value %s', __CLASS__, $value)); 140 public static function value($name) 142 $const = __CLASS__ . '::' . strtoupper($name); 145 'Enum %s has no value defined for name %s', __CLASS__, $name)); 151 // Adding a class alias for backwards compatibility with the previous class name.
|
/third_party/protobuf/php/src/Google/Protobuf/Field/ |
H A D | Kind.php | 153 public static function name($value) function 157 'Enum %s has no name defined for value %s', __CLASS__, $value)); 162 public static function value($name) 164 $const = __CLASS__ . '::' . strtoupper($name); 167 'Enum %s has no value defined for name %s', __CLASS__, $name)); 173 // Adding a class alias for backwards compatibility with the previous class name.
|
/third_party/python/Lib/test/ |
H A D | test_sundry.py | 12 for name in untested: 14 import_helper.import_module('test.test_{}'.format(name)) 16 importlib.import_module(name) 19 'otherwise'.format(name))
|