Home
last modified time | relevance | path

Searched refs:name (Results 6026 - 6050 of 19545) sorted by relevance

1...<<241242243244245246247248249250>>...782

/third_party/ltp/testcases/kernel/syscalls/ptrace/
H A Dptrace04.c27 #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 Dmadvise06.c69 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 Dmadvise02.c63 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 Dtest-parse-from-data.c73 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 Dlib.h130 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 Ddate.h88 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 Ddebug-scope-iterator.cc102 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 Dconstants-s390.cc283 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 Dbaseline-compiler.h149 #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 Dvalue-mirror.h23 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 Dtemplates.cc14 #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 Dtgsi_info.c38 #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 Dd3d12_fence.cpp117 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 Ddlns_dlopen.c26 * @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 Dbio_meth.c36 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 Dv3_ist.c19 * 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 Dcmp.c53 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 DOID.pm57 # 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 DRedirectHandler.js194 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 DMetadataTableSchema.java42 * <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 Dlib.rs146 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 Dfile.rs64 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 Dbyext.py32 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 Dwasm_assets.py140 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 DOID.pm57 # 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 ] };

Completed in 16 milliseconds

1...<<241242243244245246247248249250>>...782