/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | removexattr.c | 24 const char *name = "user.foo"; variable 28 * @tc.name : removexattr_0100 46 int result = setxattr(path, name, value, strlen(value), XATTR_CREATE); in removexattr_0100() 58 result = getxattr(path, name, buf, sizeof(buf)); in removexattr_0100() 72 result = removexattr(path, name); in removexattr_0100() 78 result = getxattr(path, name, buf, sizeof(buf)); in removexattr_0100() 91 * @tc.name : removexattr_0200
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | getenv.c | 18 char *ossl_safe_getenv(const char *name) in ossl_safe_getenv() argument 44 rsize = MultiByteToWideChar(curacp, dwFlags, name, -1, NULL, 0); in ossl_safe_getenv() 45 /* if name is valid string and can be converted to wide string */ in ossl_safe_getenv() 50 /* convert name to wide string */ in ossl_safe_getenv() 51 fsize = MultiByteToWideChar(curacp, dwFlags, name, -1, namew, rsize); in ossl_safe_getenv() 94 return secure_getenv(name); in ossl_safe_getenv() 101 return getenv(name); in ossl_safe_getenv()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/parse_callbacks/ |
H A D | mod.rs | 24 if let Some(name) = item_info.name.strip_prefix(prefix) { in generated_name_override() 25 assert!(name.starts_with(expected_prefix)); in generated_name_override() 26 assert!(name.ends_with(expected_suffix)); in generated_name_override() 27 return Some(name.to_string()); in generated_name_override() 80 panic!("Couldn't find name ParseCallbacks: {}", cb) in lookup()
|
/third_party/python/Tools/scripts/ |
H A D | generate_sre_constants.py | 48 items = [(value, name) for name, value in d.items() 49 if name.startswith(prefix)] 50 for value, name in sorted(items): 51 yield "#define %s %d\n" % (name, value)
|
H A D | linktree.py | 57 for name in names: 58 if name not in (os.curdir, os.pardir): 59 oldname = os.path.join(old, name) 60 linkname = os.path.join(link, name) 61 newname = os.path.join(new, name)
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_install_scripts.py | 43 def write_script(name, text): 44 expected.append(name) 45 f = open(os.path.join(source, name), "w") 74 for name in expected: 75 self.assertIn(name, installed)
|
/third_party/openssl/crypto/ |
H A D | getenv.c | 18 char *ossl_safe_getenv(const char *name) in ossl_safe_getenv() argument 44 rsize = MultiByteToWideChar(curacp, dwFlags, name, -1, NULL, 0); in ossl_safe_getenv() 45 /* if name is valid string and can be converted to wide string */ in ossl_safe_getenv() 50 /* convert name to wide string */ in ossl_safe_getenv() 51 fsize = MultiByteToWideChar(curacp, dwFlags, name, -1, namew, rsize); in ossl_safe_getenv() 94 return secure_getenv(name); in ossl_safe_getenv() 101 return getenv(name); in ossl_safe_getenv()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | indexExt.py | 37 for name in sorted(ext[vendor]): 38 print(fmtString.format(name)) 40 # -extension name - may be a single extension name, a a space-separated list 55 # Dictionary of vendor tags -> author name mappings 58 # Loop over all vendor tags, tracking the full corresponding author name 60 vendor = elem.get('name') 70 name = elem.get('name') variable 74 # Relies on name bein [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | SharedLibrary.hpp | 29 void *getProcAddress(void *library, const char *name); 88 inline void *getProcAddress(void *library, const char *name) in getProcAddress() argument 90 return (void*)GetProcAddress((HMODULE)library, name); in getProcAddress() 123 inline void *getProcAddress(void *library, const char *name) in getProcAddress() argument 125 void *symbol = dlsym(library, name); in getProcAddress()
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
H A D | SharedLibrary.hpp | 29 void *getProcAddress(void *library, const char *name); 87 inline void *getProcAddress(void *library, const char *name) in getProcAddress() argument 89 return (void *)GetProcAddress((HMODULE)library, name); in getProcAddress() 122 inline void *getProcAddress(void *library, const char *name) in getProcAddress() argument 124 void *symbol = dlsym(library, name); in getProcAddress()
|
/third_party/skia/third_party/externals/swiftshader/tests/ |
H A D | presubmit.sh | 21 local name=$1; shift 22 echo -n "Running check $name... " 34 echo "${red}Check $name failed.${normal}" 60 find ${SRC_DIR} -type f -name "*.${suffix}" | xargs grep -L "Copyright .* The SwiftShader Authors\|Microsoft Visual C++ generated\|GNU Bison" 80 find ${SRC_DIR} ${TESTS_DIR} -name "*.go" | xargs $GOFMT -w
|
/third_party/skia/tools/skpbench/ |
H A D | _benchresult.py | 56 def get_string(self, name): 57 return self._match.group(name) 64 for name in ['accum', 'median', 'max', 'min', 'stddev', 66 values.append(self.get_string(name + '_pad')) 67 values.append(self.get_string(name))
|
/third_party/skia/tools/trace/ |
H A D | SkDebugfTracer.cpp | 13 const char* name, in addTraceEvent() 70 SkDebugf("[% 2d]%s <%s> %s%s #%d {\n", (int)fIndent.size(), fIndent.c_str(), category, name, in addTraceEvent() 74 SkDebugf("%s%s #%d\n", name, args.c_str(), fCnt); in addTraceEvent() 81 const char* name, in updateTraceEventDuration() 84 SkDebugf("[% 2d]%s } %s\n", (int)fIndent.size(), fIndent.c_str(), name); in updateTraceEventDuration() 11 addTraceEvent(char phase, const uint8_t* categoryEnabledFlag, const char* name, uint64_t id, int numArgs, const char** argNames, const uint8_t* argTypes, const uint64_t* argValues, uint8_t flags) addTraceEvent() argument 80 updateTraceEventDuration(const uint8_t* categoryEnabledFlag, const char* name, SkEventTracer::Handle handle) updateTraceEventDuration() argument
|
/third_party/toybox/toys/posix/ |
H A D | wc.c | 34 static void show_lengths(unsigned long *lengths, char *name) in show_lengths() argument 55 if (*toys.optargs) printf(" %s", name); in show_lengths() 59 static void do_wc(int fd, char *name) in do_wc() argument 79 if (len2<0) perror_msg_raw(name); in do_wc() 111 show_lengths(lengths, name); in do_wc()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | overloadOnConstConstraintChecks4.js | 8 function foo(name: 'hi'): B; 9 function foo(name: 'bye'): C; 10 function foo(name: string): A; 11 function foo(name: any): Z { 61 function foo(name) {
|
H A D | aliasOfGenericFunctionWithRestBehavedSameAsUnaliased.js | 4 type ExtendedMapper<HandledInputT, OutputT, ArgsT extends any[]> = (name : string, mixed : HandledInputT, ...args : ArgsT) => OutputT; 12 (name : string, mixed : HandledInputT, ...args : ArgsT) => OutputT 21 {x:(name : string, mixed : HandledInputT, ...args : ArgsT) => OutputT}["x"] 29 type a3 = (name: string, mixed: any, args_0: any) => any 30 type b3 = (name: string, mixed: any, ...args: any[]) => any
|
/third_party/protobuf/python/google/protobuf/ |
H A D | proto_builder.py | 15 # * Neither the name of Google Inc. nor the names of its 45 """Get a proto class from the MessageFactory by name. 49 full_name: str, the fully qualified name of the proto type. 66 fields: dict of {name: field_type} mappings for each field in the proto. If 68 fields will be sorted by name. 69 full_name: optional str, the fully-qualified name of the proto type. 84 # Get a list of (name, field_type) tuples from the fields dict. If fields was 91 # Use a consistent file name that is unlikely to conflict with any imported 99 # If the proto is anonymous, use the same hash to name it. 118 package, name [all...] |
/third_party/protobuf/kokoro/linux/ |
H A D | make_test_output.py | 38 name = values[8].split()[-1] 39 test = tests[name] 40 test["name"] = name 61 tests["cpp"]["name"] = "cpp" 68 ret.sort(key=lambda x: x["name"]) 77 with tag("testsuite", name="Protobuf Tests"): 79 with tag("testcase", name=test["name"], classname=test["name"], [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | modinfo.c | 71 pa_modinfo *pa_modinfo_get_by_name(const char *name) { in pa_modinfo_get_by_name() argument 75 pa_assert(name); in pa_modinfo_get_by_name() 77 if (!(dl = lt_dlopenext(name))) { in pa_modinfo_get_by_name() 78 pa_log("Failed to open module \"%s\": %s", name, lt_dlerror()); in pa_modinfo_get_by_name() 82 i = pa_modinfo_get_by_handle(dl, name); in pa_modinfo_get_by_name()
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | module.rs | 23 /// The name of the module, or none if it's anonymous. 24 name: Option<String>, 33 pub fn new(name: Option<String>, kind: ModuleKind) -> Self { in new() 35 name, in new() 41 /// Get this module's name. 42 pub fn name(&self) -> Option<&str> { in name() functions 43 self.name.as_deref() in name()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fTextureStateQueryTests.cpp | 76 const char* name; in init() member 87 const char* name; in init() member 115 std::string() + textureTargets[targetNdx].name + "_is_texture", in init() 126 std::string() + textureTargets[targetNdx].name + "_" + states[stateNdx].name + getVerifierSuffix(verifier), in init()
|
/vendor/hisilicon/hispark_pegasus/demo/mutex_demo/ |
H A D | mutex.c | 49 osThreadId_t newThread(char *name, osThreadFunc_t func, int *arg) in newThread() argument 52 name, 0, NULL, 0, NULL, 1024*2, osPriorityNormal, 0, 0 in newThread() 56 printf("[Mutex Test]osThreadNew(%s) failed.\r\n", name); in newThread() 58 printf("[Mutex Test]osThreadNew(%s) success, thread id: %d.\r\n", name, tid); in newThread() 81 printf("[Mutex Test]osMutexGetOwner, thread id: %p, thread name: %s.\r\n", tid, osThreadGetName(tid)); in rtosv2_mutex_main() 94 attr.name = "rtosv2_mutex_main"; in MutexTestTask()
|
/vendor/hisilicon/hispark_pegasus/demo/thread_demo/00_thread/ |
H A D | thread.c | 26 osThreadId_t newThread(char *name, osThreadFunc_t func, int*arg) in newThread() argument 29 name, 0, NULL, 0, NULL, 1024*2, osPriorityNormal, 0, 0 in newThread() 33 printf("[Thread Test] osThreadNew(%s) failed.\r\n", name); in newThread() 35 printf("[Thread Test] osThreadNew(%s) success, thread id: %d.\r\n", name, tid); in newThread() 59 printf("[Thread Test] osThreadGetName, thread name: %s.\r\n", t_name); in rtosv2_thread_main() 93 attr.name = "rtosv2_thread_main"; in ThreadTestTask()
|
/kernel/linux/linux-6.6/drivers/usb/gadget/function/ |
H A D | f_midi2.c | 153 /* get EP name string */ 165 /* get FB name string */ 168 return info->name ? info->name : "MIDI 2.0 Gadget I/O"; in ump_fb_name() 490 #define UMP_STREAM_EP_STR_OFF 2 /* offset of name string for EP info */ 491 #define UMP_STREAM_FB_STR_OFF 3 /* offset of name string for FB info */ 494 static void reply_ump_stream_string(struct f_midi2_ep *ep, const u8 *name, in reply_ump_stream_string() argument 504 if (!*name) in reply_ump_stream_string() 517 buf[pos / 4] |= *name++ << ((3 - (pos % 4)) * 8); in reply_ump_stream_string() 518 if (!*name) { in reply_ump_stream_string() 2348 f_midi2_opts_block_make(struct config_group *group, const char *name) f_midi2_opts_block_make() argument 2502 f_midi2_opts_ep_make(struct config_group *group, const char *name) f_midi2_opts_ep_make() argument [all...] |
/kernel/linux/linux-5.10/arch/powerpc/perf/ |
H A D | hv-24x7.c | 202 .name = "format", 207 .name = "events", 212 .name = "event_descs", 217 .name = "event_long_descs", 283 * - padding for desc, name, and long/detailed desc is required to be '\0' 297 pr_debug("%s: name length too short: %d", __func__, nl); in event_end() 469 static struct attribute *device_str_attr_create_(char *name, char *str) in device_str_attr_create_() argument 479 attr->attr.attr.name = name; in device_str_attr_create_() 495 static struct attribute *device_str_attr_create(char *name, in argument 572 char *name = event_name(event, &nl); event_to_desc_attr() local 586 char *name = event_name(event, &nl); event_to_long_desc_attr() local 609 const char *name; global() member 639 event_uniq_add(struct rb_root *root, const char *name, int nl, unsigned domain) event_uniq_add() argument 879 char *name; create_events_from_catalog() local 939 char *name; create_events_from_catalog() local [all...] |