/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
H A D | ptrace04.c | 27 #define R(r) { .name = "PT_" #r, .off = PT_##r }, 29 const char *name; member 73 regs[i].name, regs[i].off); in compare_registers() 84 regs[i].name, regs[i].off, *pt_val, in compare_registers()
|
/third_party/ltp/testcases/kernel/syscalls/madvise/ |
H A D | madvise06.c | 69 static void print_cgmem(const char *name) in print_cgmem() argument 73 if (!SAFE_CG_HAS(tst_cg, name)) in print_cgmem() 76 SAFE_CG_SCANF(tst_cg, name, "%ld", &ret); in print_cgmem() 77 tst_res(TINFO, "\t%s: %ld Kb", name, ret / 1024); in print_cgmem()
|
H A D | madvise02.c | 63 char *name; member 164 tst_res(TCONF, "%s is not supported", tc->name); in advice_test() 171 tst_res(TPASS | TTERRNO, "%s failed as expected", tc->name); in advice_test() 175 tc->name, tc->exp_errno, in advice_test()
|
/third_party/libexif/test/ |
H A D | test-parse-from-data.c | 73 const char *name = exif_mnote_data_get_name(mn, i); in dump_makernote() local 75 if (!name) in dump_makernote() 76 name = "(unknown)"; in dump_makernote() 79 " Value: %s\n", i, id, name, (unsigned)strlen(buf), buf); in dump_makernote() 93 /* Skip over path to display only the file name */ in test_parse()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | lib.h | 130 extern void predefine(const char *name, int weak, const char *fmt, ...) FORMAT_ATTR(3); 131 extern void predefine_strong(const char *name, ...) FORMAT_ATTR(1); 132 extern void predefine_weak(const char *name, ...) FORMAT_ATTR(1); 133 extern void predefine_nostd(const char *name);
|
/third_party/node/deps/v8/src/date/ |
H A D | date.h | 88 const char** name = is_dst ? &dst_tz_name_ : &tz_name_; in LocalTimezone() local 89 if (*name == nullptr) { in LocalTimezone() 90 *name = tz_cache_->LocalTimezone(static_cast<double>(time_ms)); in LocalTimezone() 92 return *name; in LocalTimezone() 233 // Timezone name cache
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-scope-iterator.cc | 102 Handle<Object> name = iterator_.GetFunctionDebugName(); in GetFunctionDebugName() local 103 return Utils::ToLocal(name); in GetFunctionDebugName() 122 bool DebugScopeIterator::SetVariableValue(v8::Local<v8::String> name, in SetVariableValue() argument 125 return iterator_.SetVariableValue(Utils::OpenHandle(*name), in SetVariableValue()
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | constants-s390.cc | 283 int DoubleRegisters::Number(const char* name) { in Number() argument 285 if (strcmp(names_[i], name) == 0) { in Number() 290 // No register with the requested name found. in Number() 294 int Registers::Number(const char* name) { in Number() argument 297 if (strcmp(names_[i], name) == 0) { in Number() 302 // No register with the requested name found. in Number()
|
/third_party/node/deps/v8/src/baseline/ |
H A D | baseline-compiler.h | 149 #define DECLARE_VISITOR(name, ...) void Visit##name(); 154 #define DECLARE_VISITOR(name, ...) \ 155 void VisitIntrinsic##name(interpreter::RegisterList args);
|
/third_party/node/deps/v8/src/inspector/ |
H A D | value-mirror.h | 23 String16 name; member 30 String16 name; member 35 String16 name; member 59 v8::Local<v8::Context> context, const String16& name, in buildPropertyPreview() 58 buildPropertyPreview( v8::Local<v8::Context> context, const String16& name, std::unique_ptr<protocol::Runtime::PropertyPreview>*) const buildPropertyPreview() argument
|
/third_party/node/deps/v8/src/objects/ |
H A D | templates.cc | 14 #include "src/objects/name-inl.h" 32 Handle<Name> name; in GetOrCreateSharedFunctionInfo() local 34 if (maybe_name.ToHandle(&name) && name->IsString()) { in GetOrCreateSharedFunctionInfo() 35 name_string = Handle<String>::cast(name); in GetOrCreateSharedFunctionInfo()
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_info.c | 38 #define OPCODE(_num_dst, _num_src, _output_mode, name, ...) \ 39 { .opcode = TGSI_OPCODE_ ## name, \ 76 #define OPCODE(_num_dst, _num_src, _output_mode, name, ...) #name,
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_fence.cpp | 117 d3d12_open_fence(struct d3d12_screen *screen, HANDLE handle, const void *name) in d3d12_open_fence() argument 126 assert(!!handle ^ !!name); in d3d12_open_fence() 127 if (name) { in d3d12_open_fence() 128 screen->dev->OpenSharedHandleByName((LPCWSTR)name, GENERIC_ALL, &handle_to_close); in d3d12_open_fence()
|
/third_party/musl/libc-test/src/functionalext/dlns/ |
H A D | dlns_dlopen.c | 26 * @tc.name : dlopen_0100 39 * @tc.name : dlopen_0200 50 * @tc.name : dlns_init_0100 59 EXPECT_EQ("dlns_init_0100", strcmp(dlns.name, n), 0); in dlns_init_0100() 63 * @tc.name : dlns_init_0200 79 int dlnslen = strlen(dlns.name); in dlns_init_0200() 84 * @tc.name : dlns_create_0100 97 * @tc.name : dlns_create_0200 112 * @tc.name : dlns_create_0300 130 * @tc.name [all...] |
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bio_meth.c | 36 BIO_METHOD *BIO_meth_new(int type, const char *name) in BIO_meth_new() argument 41 || (biom->name = OPENSSL_strdup(name)) == NULL) { in BIO_meth_new() 53 OPENSSL_free(biom->name); in BIO_meth_free()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_ist.c | 19 * Issuer Sign Tool (1.2.643.100.112) The name of the tool used to signs the subject (ASN1_SEQUENCE) 51 if (strcmp(cnf->name, "signTool") == 0) { 59 } else if (strcmp(cnf->name, "cATool") == 0) { 67 } else if (strcmp(cnf->name, "signToolCert") == 0) { 75 } else if (strcmp(cnf->name, "cAToolCert") == 0) {
|
/third_party/node/deps/openssl/openssl/fuzz/ |
H A D | cmp.c | 53 X509_NAME *name = X509_NAME_new(); in cmp_client_process_response() local 63 || name == NULL || !X509_set_issuer_name(ctx->oldCert, name) in cmp_client_process_response() 98 X509_NAME_free(name); in cmp_client_process_response()
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | OID.pm | 57 # This registers a name with an OID. It's saved internally and 169 # As we currently only support a name without number as first 218 my $name = shift; 221 if (defined $name2oid{$name}) { 223 my $str2 = join(',', @{$name2oid{$name}->{nums}}); 225 croak "Invalid redefinition of $name with different value" 228 $name2oid{$name} = { type => 'leaf', nums => [ @nums ] };
|
/third_party/node/deps/undici/src/lib/handler/ |
H A D | RedirectHandler.js | 194 const name = util.headerNameToString(header) 195 return name === 'authorization' || name === 'cookie' || name === 'proxy-authorization'
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | MetadataTableSchema.java | 42 * <li>{@link #TIMEZONE}: The default timezone name(s) for a calling code. Multiple timezones 61 public static Column<Regions> column(String name) { in column() argument 62 return Column.create(Regions.class, name, EMPTY, Regions::new); in column() 89 public static Column<DigitSequences> column(String name) { in column() argument 90 return Column.create(DigitSequences.class, name, EMPTY, DigitSequences::new); in column()
|
/third_party/rust/crates/atty/src/ |
H A D | lib.rs | 146 let name = String::from_utf16_lossy(s); in msys_tty_on() 147 // This checks whether 'pty' exists in the file name, which indicates that in msys_tty_on() 149 // (e.g., an actual file name that contains 'pty'), we also require that in msys_tty_on() 150 // either the strings 'msys-' or 'cygwin-' are in the file name as well.) in msys_tty_on() 151 let is_msys = name.contains("msys-") || name.contains("cygwin-"); in msys_tty_on() 152 let is_pty = name.contains("-pty"); in msys_tty_on()
|
/third_party/rust/crates/codespan/codespan/src/ |
H A D | file.rs | 64 pub fn add(&mut self, name: impl Into<OsString>, source: Source) -> FileId { in add() 66 self.files.push(File::new(name.into(), source.into())); in add() 90 /// Get the name of the source file. 95 /// let name = "test"; 98 /// let file_id = files.add(name, "hello world!"); 100 /// assert_eq!(files.name(file_id), name); 102 pub fn name(&self, file_id: FileId) -> &OsStr { in name() functions 103 self.get(file_id).name() in name() 233 fn name( functions 298 fn name(&self) -> &OsStr { name() functions [all...] |
/third_party/python/Tools/scripts/ |
H A D | byext.py | 32 for name in sorted(names): 33 if name.startswith(".#"): 35 if name.endswith("~"): 37 full = os.path.join(dir, name)
|
/third_party/python/Tools/wasm/ |
H A D | wasm_assets.py | 140 f"Invalid sysconfig data name '{data_name}'.", SYSCONFIG_NAMES 166 if entry.name == "__pycache__": 168 if entry.name.endswith(".py") or entry.is_dir(): 252 (args.srcdir_lib / name).resolve() for name in omit_files
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | OID.pm | 57 # This registers a name with an OID. It's saved internally and 169 # As we currently only support a name without number as first 218 my $name = shift; 221 if (defined $name2oid{$name}) { 223 my $str2 = join(',', @{$name2oid{$name}->{nums}}); 225 croak "Invalid redefinition of $name with different value" 228 $name2oid{$name} = { type => 'leaf', nums => [ @nums ] };
|