/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
H A D | kfunc_call.c | 31 #define __BPF_TEST_SUCCESS(name, __retval, type) \ 33 .prog_name = #name, \ 34 .lskel_prog_desc_offset = offsetof(struct kfunc_call_test_lskel, progs.name), \ 40 #define __BPF_TEST_FAIL(name, __retval, type, error_msg) \ 42 .prog_name = #name, \ 49 #define TC_TEST(name, retval) __BPF_TEST_SUCCESS(name, retval, tc_test) 50 #define SYSCALL_TEST(name, retval) __BPF_TEST_SUCCESS(name, retval, syscall_test) 51 #define SYSCALL_NULL_CTX_TEST(name, retva [all...] |
/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | audio-iio-aux.c | 21 const char *name; member 107 .name = chan->name, in audio_iio_aux_add_controls() 139 input_name = kasprintf(GFP_KERNEL, "%s IN", chan->name); in audio_iio_aux_add_dapms() 143 output_name = kasprintf(GFP_KERNEL, "%s OUT", chan->name); in audio_iio_aux_add_dapms() 149 pga_name = kasprintf(GFP_KERNEL, "%s PGA", chan->name); in audio_iio_aux_add_dapms() 195 i, chan->name); in audio_iio_aux_component_probe() 201 i, chan->name); in audio_iio_aux_component_probe() 210 i, chan->name); in audio_iio_aux_component_probe() 220 i, chan->name); in audio_iio_aux_component_probe() [all...] |
/test/xts/acts/security_lite/permission_posix/pms/src/ |
H A D | ActsPMSGrantTest.cpp | 98 * @tc.name grant one permission while not load permiossion
104 int ret = g_interface->GrantPermission(TEST_APP_ID, g_systemPers[0].name);
in HWTEST_F() 107 ret = g_interface->CheckPermission(TEST_TASKID, g_systemPers[0].name);
in HWTEST_F() 115 * @tc.name grant permissions while load permiossion
122 int ret = g_interface->GrantPermission(TEST_APP_ID, g_systemPers[0].name);
in HWTEST_F() 139 * @tc.name grant opened permissions while load permiossion
145 g_interface->GrantPermission(TEST_APP_ID, g_systemPers[0].name);
in HWTEST_F() 147 int ret = g_interface->GrantPermission(TEST_APP_ID, g_systemPers[0].name);
in HWTEST_F() 164 * @tc.name grant unapplied permissions while load permiossion
171 int ret = g_interface->GrantPermission(TEST_APP_ID, g_systemPers[1].name);
in HWTEST_F() [all...] |
/third_party/glslang/gtests/ |
H A D | VkRelaxed.FromFile.cpp | 19 // Neither the name of 3Dlabs Inc. Ltd. nor the names of its 57 return symbol.getType()->getBasicType() == glslang::EbtBlock ? std::string(symbol.getType()->getTypeName().c_str()) : symbol.name; in interfaceName() 95 std::string name = interfaceName(out); in verifyIOMapping() local 96 pipeOut[name] = &out; in verifyIOMapping() 102 std::string name = interfaceName(in); in verifyIOMapping() local 103 auto out = pipeOut.find(name); in verifyIOMapping() 110 } else if (name != "gl_FrontFacing" && name != "gl_FragCoord") { in verifyIOMapping() 122 std::string name = interfaceName(uniform); in verifyIOMapping() local 123 programUniforms[name] in verifyIOMapping() 132 std::string name = interfaceName(uniform); verifyIOMapping() local 156 std::string name = interfaceName(uniform); verifyIOMapping() local 166 std::string name = interfaceName(uniform); verifyIOMapping() local [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A D | sha3_prov.c | 47 # define S390_SHA3_CAPABLE(name) \ 48 ((OPENSSL_s390xcap_P.kimd[0] & S390X_CAPBIT(S390X_##name)) && \ 49 (OPENSSL_s390xcap_P.klmd[0] & S390X_CAPBIT(S390X_##name))) 203 #define SHA3_newctx(typ, uname, name, bitlen, pad) \ 204 static OSSL_FUNC_digest_newctx_fn name##_newctx; \ 205 static void *name##_newctx(void *provctx) \ 231 #define PROV_FUNC_SHA3_DIGEST_COMMON(name, bitlen, blksize, dgstsize, flags) \ 232 PROV_FUNC_DIGEST_GET_PARAM(name, blksize, dgstsize, flags) \ 233 const OSSL_DISPATCH ossl_##name##_functions[] = { \ 234 { OSSL_FUNC_DIGEST_NEWCTX, (void (*)(void))name##_newct [all...] |
/third_party/node/deps/openssl/openssl/crypto/pem/ |
H A D | pem_info.c | 58 char *name = NULL, *header = NULL, *str; in STACK_OF() local 82 i = PEM_read_bio(bp, &name, &header, &data, &len); in STACK_OF() 94 if (strcmp(name, PEM_STRING_X509) == 0 in STACK_OF() 95 || strcmp(name, PEM_STRING_X509_OLD) == 0 in STACK_OF() 96 || strcmp(name, PEM_STRING_X509_TRUSTED) == 0) { in STACK_OF() 104 if ((strcmp(name, PEM_STRING_X509_TRUSTED) == 0)) in STACK_OF() 112 } else if (strcmp(name, PEM_STRING_X509_CRL) == 0) { in STACK_OF() 122 } else if ((str = strstr(name, PEM_STRING_PKCS8INF)) != NULL) { in STACK_OF() 130 if (str == name || strcmp(name, PEM_STRING_PKCS in STACK_OF() [all...] |
/third_party/node/deps/openssl/openssl/crypto/pkcs12/ |
H A D | p12_crt.c | 19 const char *name, 37 PKCS12 *PKCS12_create_ex(const char *pass, const char *name, EVP_PKEY *pkey, in PKCS12_create_ex() argument 76 if (name == NULL) in PKCS12_create_ex() 77 name = (char *)X509_alias_get0(cert, &namelen); in PKCS12_create_ex() 85 bag = pkcs12_add_cert_bag(&bags, cert, name, namelen, pkeyid, pkeyidlen); in PKCS12_create_ex() 113 if (name && !PKCS12_add_friendlyname(bag, name, -1)) in PKCS12_create_ex() 148 PKCS12 *PKCS12_create(const char *pass, const char *name, EVP_PKEY *pkey, X509 *cert, in PKCS12_create() argument 152 return PKCS12_create_ex(pass, name, pkey, cert, ca, nid_key, nid_cert, in PKCS12_create() 158 const char *name, in STACK_OF() 187 char *name = NULL; STACK_OF() local [all...] |
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | info.py | 27 def __init__(self, name): 28 super().__init__(None, name, None, None, _shortkey=name) 173 def __getattr__(self, name): 174 if name.startswith('_'): 175 raise AttributeError(name) 178 value = getattr(self.item, name) 180 raise AttributeError(name) 183 value = self._extra[name] 188 self.__dict__[name] [all...] |
/third_party/openssl/crypto/pem/ |
H A D | pem_info.c | 58 char *name = NULL, *header = NULL, *str; in STACK_OF() local 82 i = PEM_read_bio(bp, &name, &header, &data, &len); in STACK_OF() 94 if (strcmp(name, PEM_STRING_X509) == 0 in STACK_OF() 95 || strcmp(name, PEM_STRING_X509_OLD) == 0 in STACK_OF() 96 || strcmp(name, PEM_STRING_X509_TRUSTED) == 0) { in STACK_OF() 104 if ((strcmp(name, PEM_STRING_X509_TRUSTED) == 0)) in STACK_OF() 112 } else if (strcmp(name, PEM_STRING_X509_CRL) == 0) { in STACK_OF() 122 } else if ((str = strstr(name, PEM_STRING_PKCS8INF)) != NULL) { in STACK_OF() 130 if (str == name || strcmp(name, PEM_STRING_PKCS in STACK_OF() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderReturnTests.cpp | 71 const std::string& name, 80 const std::string& name, in ShaderReturnCase() 85 : ShaderRenderCase(testCtx, name, isVertexCase, evalFunc, uniformFunc, DE_NULL) in ShaderReturnCase() 136 de::MovePtr<ShaderReturnCase> makeConditionalReturnInFuncCase (tcu::TestContext& context, const std::string& name, ReturnMode returnMode, bool isVertex) in makeConditionalReturnInFuncCase() argument 173 return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, isVertex, tmpl.specialize(params), getEvalFunc(returnMode), DE_NULL)); in makeConditionalReturnInFuncCase() 176 de::MovePtr<ShaderReturnCase> makeOutputWriteReturnCase (tcu::TestContext& context, const std::string& name, bool inFunction, ReturnMode returnMode, bool isVertex) in makeOutputWriteReturnCase() argument 228 return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, isVertex, tmpl.specialize(params), getEvalFunc(returnMode), DE_NULL)); in makeOutputWriteReturnCase() 231 de::MovePtr<ShaderReturnCase> makeReturnInLoopCase (tcu::TestContext& context, const std::string& name, bool isDynamicLoop, ReturnMode returnMode, bool isVertex) in makeReturnInLoopCase() argument 275 return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, isVertex, tmpl.specialize(params), getEvalFunc(returnMode), new ReturnTestUniformSetup(UI_ONE))); in makeReturnInLoopCase() 348 std::string name in init() local 79 ShaderReturnCase(tcu::TestContext& testCtx, const std::string& name, bool isVertexCase, const std::string& shaderSource, const ShaderEvalFunc evalFunc, const UniformSetup* uniformFunc) ShaderReturnCase() argument 416 std::string name = std::string("output_write_") + (inFunc ? "in_func_" : "") + getReturnModeName((ReturnMode)returnMode) + (isFragment ? "_fragment" : "_vertex"); init() local 430 std::string name = std::string("return_in_") + (isDynamicLoop ? "dynamic" : "static") + "_loop_" + getReturnModeName((ReturnMode)returnMode) + (isFragment ? "_fragment" : "_vertex"); init() local [all...] |
/third_party/openssl/providers/implementations/digests/ |
H A D | sha3_prov.c | 47 # define S390_SHA3_CAPABLE(name) \ 48 ((OPENSSL_s390xcap_P.kimd[0] & S390X_CAPBIT(S390X_##name)) && \ 49 (OPENSSL_s390xcap_P.klmd[0] & S390X_CAPBIT(S390X_##name))) 203 #define SHA3_newctx(typ, uname, name, bitlen, pad) \ 204 static OSSL_FUNC_digest_newctx_fn name##_newctx; \ 205 static void *name##_newctx(void *provctx) \ 231 #define PROV_FUNC_SHA3_DIGEST_COMMON(name, bitlen, blksize, dgstsize, flags) \ 232 PROV_FUNC_DIGEST_GET_PARAM(name, blksize, dgstsize, flags) \ 233 const OSSL_DISPATCH ossl_##name##_functions[] = { \ 234 { OSSL_FUNC_DIGEST_NEWCTX, (void (*)(void))name##_newct [all...] |
/third_party/toybox/toys/pending/ |
H A D | crontab.c | 123 char *name, *val, *tokens[5] = {0,}, *ptr = line; in parse_crontab() local 145 name = tokens[0]; in parse_crontab() 146 if ((val = strchr(name, '='))) *val++ = 0; in parse_crontab() 153 name = tokens[0]; in parse_crontab() 154 if ((val = strchr(name, '='))) { in parse_crontab() 170 name = tokens[0]; in parse_crontab() 215 static void do_list(char *name) in do_list() argument 219 snprintf(toybuf, sizeof(toybuf), "%s%s", TT.cdir, name); in do_list() 225 static void do_remove(char *name) in do_remove() argument 227 snprintf(toybuf, sizeof(toybuf), "%s%s", TT.cdir, name); in do_remove() 246 do_replace(char *name) do_replace() argument [all...] |
/third_party/python/Lib/test/test_importlib/ |
H A D | test_metadata_api.py | 54 for name in names: 55 with self.subTest(name): 56 assert distribution(name).metadata['Name'] == 'pkg.dot' 72 path for path in files('egginfo-pkg') if path.name == 'top_level.txt' 89 self.assertIn(ep.dist.name, ('distinfo-pkg', 'egginfo-pkg')) 95 on sys.path with a given name (even when normalized). 114 ep.dist.name == 'distinfo-pkg' and ep.dist.version == '1.0.0' 130 allowed casting those lists into maps by name using ``dict()``. 184 ep = entry_points().select(group='entries', name='main') 206 if file.name [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRenderReturnTests.cpp | 71 const std::string& name, 81 const std::string& name, in ShaderReturnCase() 87 : ShaderRenderCase(testCtx, name, description, isVertexCase, evalFunc, uniformFunc, DE_NULL) in ShaderReturnCase() 138 de::MovePtr<ShaderReturnCase> makeConditionalReturnInFuncCase (tcu::TestContext& context, const std::string& name, const std::string& description, ReturnMode returnMode, bool isVertex) in makeConditionalReturnInFuncCase() argument 175 return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, description, isVertex, tmpl.specialize(params), getEvalFunc(returnMode), DE_NULL)); in makeConditionalReturnInFuncCase() 178 de::MovePtr<ShaderReturnCase> makeOutputWriteReturnCase (tcu::TestContext& context, const std::string& name, const std::string& description, bool inFunction, ReturnMode returnMode, bool isVertex) in makeOutputWriteReturnCase() argument 230 return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, description, isVertex, tmpl.specialize(params), getEvalFunc(returnMode), DE_NULL)); in makeOutputWriteReturnCase() 233 de::MovePtr<ShaderReturnCase> makeReturnInLoopCase (tcu::TestContext& context, const std::string& name, const std::string& description, bool isDynamicLoop, ReturnMode returnMode, bool isVertex) in makeReturnInLoopCase() argument 277 return de::MovePtr<ShaderReturnCase>(new ShaderReturnCase(context, name, description, isVertex, tmpl.specialize(params), getEvalFunc(returnMode), new ReturnTestUniformSetup(UI_ONE))); in makeReturnInLoopCase() 361 std::string name in init() local 80 ShaderReturnCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool isVertexCase, const std::string& shaderSource, const ShaderEvalFunc evalFunc, const UniformSetup* uniformFunc) ShaderReturnCase() argument 427 std::string name = std::string("output_write_") + (inFunc ? "in_func_" : "") + getReturnModeName((ReturnMode)returnMode) + (isFragment ? "_fragment" : "_vertex"); init() local 442 std::string name = std::string("return_in_") + (isDynamicLoop ? "dynamic" : "static") + "_loop_" + getReturnModeName((ReturnMode)returnMode) + (isFragment ? "_fragment" : "_vertex"); init() local [all...] |
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fShaderReturnTests.cpp | 83 ShaderReturnCase (Context& context, const char* name, const char* description, bool isVertexCase, const char* shaderSource, ShaderEvalFunc evalFunc, deUint32 requirements = 0); 92 ShaderReturnCase::ShaderReturnCase (Context& context, const char* name, const char* description, bool isVertexCase, const char* shaderSource, ShaderEvalFunc evalFunc, deUint32 requirements) in ShaderReturnCase() argument 93 : ShaderRenderCase (context.getTestContext(), context.getRenderContext(), context.getContextInfo(), name, description, isVertexCase, evalFunc) in ShaderReturnCase() 153 ShaderReturnCase* makeConditionalReturnInFuncCase (Context& context, const char* name, const char* description, ReturnMode returnMode, bool isVertex) in makeConditionalReturnInFuncCase() argument 190 return new ShaderReturnCase(context, name, description, isVertex, tmpl.specialize(params).c_str(), getEvalFunc(returnMode)); in makeConditionalReturnInFuncCase() 193 ShaderReturnCase* makeOutputWriteReturnCase (Context& context, const char* name, const char* description, bool inFunction, ReturnMode returnMode, bool isVertex) in makeOutputWriteReturnCase() argument 244 return new ShaderReturnCase(context, name, description, isVertex, tmpl.specialize(params).c_str(), getEvalFunc(returnMode)); in makeOutputWriteReturnCase() 247 ShaderReturnCase* makeReturnInLoopCase (Context& context, const char* name, const char* description, bool isDynamicLoop, ReturnMode returnMode, bool isVertex) in makeReturnInLoopCase() argument 291 return new ShaderReturnCase(context, name, description, isVertex, tmpl.specialize(params).c_str(), getEvalFunc(returnMode), isDynamicLoop ? REQUIRE_DYNAMIC_LOOPS : 0); in makeReturnInLoopCase() 352 string name in init() local 411 string name = string("output_write_") + (inFunc ? "in_func_" : "") + getReturnModeName((ReturnMode)returnMode) + (isFragment ? "_fragment" : "_vertex"); init() local 426 string name = string("return_in_") + (isDynamicLoop ? "dynamic" : "static") + "_loop_" + getReturnModeName((ReturnMode)returnMode) + (isFragment ? "_fragment" : "_vertex"); init() local [all...] |
/third_party/zlib/examples/ |
H A D | gzjoin.c | 49 has a minimal ten-byte gzip header with no file name or modification time. 79 char *name; /* name of file for error messages */ member 100 local bin *bopen(char *name) in bopen() argument 108 in->fd = open(name, O_RDONLY, 0); in bopen() 115 in->name = name; in bopen() 142 bail("unexpected end of file on ", in->name)) 184 bail("unexpected end of file on ", in->name); in bskip() 196 bail("unexpected end of file on ", in->name); in bskip() 279 gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot, FILE *out) gzcopy() argument [all...] |
/kernel/linux/linux-5.10/scripts/mod/ |
H A D | modpost.c | 157 if (strcmp(mod->name, modname) == 0) in find_module() 170 strcpy(mod->name, modname); in new_module() 196 char name[]; member 202 static inline unsigned int tdb_hash(const char *name) in tdb_hash() argument 208 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++) in tdb_hash() 209 value = (value + (((unsigned char *)name)[i] << (i*5 % 24))); in tdb_hash() 218 static struct symbol *alloc_symbol(const char *name, unsigned int weak, in alloc_symbol() argument 221 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1)); in alloc_symbol() 224 strcpy(s->name, nam in alloc_symbol() 232 new_symbol(const char *name, struct module *module, enum export export) new_symbol() argument 243 find_symbol(const char *name) find_symbol() argument 412 sym_add_exported(const char *name, struct module *mod, enum export export) sym_add_exported() argument 432 sym_set_crc(const char *name, unsigned int crc) sym_set_crc() argument 699 const char *name; handle_symbol() local 1282 const char *name = elf->strtab + sym->st_name; is_valid_name() local 1430 get_pretty_name(int is_func, const char** name, const char** name_p) get_pretty_name() argument 2316 add_staging_flag(struct buffer *b, const char *name) add_staging_flag() argument [all...] |
/third_party/node/deps/v8/src/logging/ |
H A D | log.cc | 66 #define DECLARE_EVENT(ignore1, name) #name, 135 void AppendName(Name name) { in AppendName() argument 136 if (name.IsString()) { in AppendName() 137 AppendString(String::cast(name)); in AppendName() 139 Symbol symbol = Symbol::cast(name); in AppendName() 225 Handle<Name> name) { in CodeCreateEvent() 228 name_buffer_->AppendName(*name); in CodeCreateEvent() 270 wasm::WasmName name, in CodeCreateEvent() 275 DCHECK(!name in CodeCreateEvent() 223 CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code, Handle<Name> name) CodeCreateEvent() argument 268 CodeCreateEvent(LogEventsAndTags tag, const wasm::WasmCode* code, wasm::WasmName name, const char* source_url, int , int ) CodeCreateEvent() argument 350 WriteLogRecordedBuffer(uintptr_t address, int size, const char* name, int name_length) WriteLogRecordedBuffer() argument 363 LogRecordedBuffer(Handle<AbstractCode> code, MaybeHandle<SharedFunctionInfo>, const char* name, int length) LogRecordedBuffer() argument 372 code->InstructionSize(), name, length); LogRecordedBuffer() local 376 LogRecordedBuffer(const wasm::WasmCode* code, const char* name, int length) LogRecordedBuffer() argument 439 CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code, Handle<Name> name) CodeCreateEvent() argument 459 CodeCreateEvent( LogEventsAndTags tag, Handle<AbstractCode> code, Handle<SharedFunctionInfo> shared, Handle<Name> name) CodeCreateEvent() argument 504 CodeCreateEvent( LogEventsAndTags tag, const wasm::WasmCode* code, wasm::WasmName name, const char* source_url, int code_offset, int script_id) CodeCreateEvent() argument 601 LowLevelLogger(Isolate* isolate, const char* name) LowLevelLogger() argument 647 LogRecordedBuffer(Handle<AbstractCode> code, MaybeHandle<SharedFunctionInfo>, const char* name, int length) LogRecordedBuffer() argument 661 LogRecordedBuffer(const wasm::WasmCode* code, const char* name, int length) LogRecordedBuffer() argument 725 LogRecordedBuffer(Handle<AbstractCode> code, MaybeHandle<SharedFunctionInfo> maybe_shared, const char* name, int length) LogRecordedBuffer() argument 747 LogRecordedBuffer(const wasm::WasmCode* code, const char* name, int length) LogRecordedBuffer() argument 1075 StringEvent(const char* name, const char* value) StringEvent() argument 1079 UncheckedStringEvent(const char* name, const char* value) UncheckedStringEvent() argument 1085 IntPtrTEvent(const char* name, intptr_t value) IntPtrTEvent() argument 1118 TimerEvent(v8::LogEventStatus se, const char* name) TimerEvent() argument 1134 BasicBlockCounterEvent(const char* name, int block_id, uint32_t count) BasicBlockCounterEvent() argument 1143 BuiltinHashEvent(const char* name, int hash) BuiltinHashEvent() argument 1164 NewEvent(const char* name, void* object, size_t size) NewEvent() argument 1172 DeleteEvent(const char* name, void* object) DeleteEvent() argument 1309 CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code, const char* name) CodeCreateEvent() argument 1316 msg << name; CodeCreateEvent() local 1322 CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code, Handle<Name> name) CodeCreateEvent() argument 1329 msg << *name; CodeCreateEvent() local 1403 CodeCreateEvent(LogEventsAndTags tag, const wasm::WasmCode* code, wasm::WasmName name, const char* , int , int ) CodeCreateEvent() argument 1427 CallbackEventInternal(const char* prefix, Handle<Name> name, Address entry_point) CallbackEventInternal() argument 1434 << kNext << 1 << kNext << prefix << *name; CallbackEventInternal() local 1438 CallbackEvent(Handle<Name> name, Address entry_point) CallbackEvent() argument 1442 GetterCallbackEvent(Handle<Name> name, Address entry_point) GetterCallbackEvent() argument 1446 SetterCallbackEvent(Handle<Name> name, Address entry_point) SetterCallbackEvent() argument [all...] |
/kernel/linux/linux-5.10/net/bluetooth/ |
H A D | hci_event.c | 52 BT_DBG("%s status 0x%2.2x", hdev->name, status); in hci_cc_inquiry_cancel() 91 BT_DBG("%s status 0x%2.2x", hdev->name, status); in hci_cc_periodic_inq() 103 BT_DBG("%s status 0x%2.2x", hdev->name, status); in hci_cc_exit_periodic_inq() 116 BT_DBG("%s", hdev->name); in hci_cc_remote_name_req_cancel() 124 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_role_discovery() 143 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_link_policy() 163 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_write_link_policy() 186 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_def_link_policy() 200 BT_DBG("%s status 0x%2.2x", hdev->name, status); in hci_cc_write_def_link_policy() 216 BT_DBG("%s status 0x%2.2x", hdev->name, statu in hci_cc_reset() 2025 hci_check_pending_name(struct hci_dev *hdev, struct hci_conn *conn, bdaddr_t *bdaddr, u8 *name, u8 name_len) hci_check_pending_name() argument [all...] |
/base/hiviewdfx/hiview/plugins/sysevent_source/include/ |
H A D | event_json_parser.h | 52 std::string GetTagByDomainAndName(const std::string& domain, const std::string& name) const; 53 int GetTypeByDomainAndName(const std::string& domain, const std::string& name) const; 54 bool GetPreserveByDomainAndName(const std::string& domain, const std::string& name) const; 56 BaseInfo GetDefinedBaseInfoByDomainName(const std::string& domain, const std::string& name) const; 59 bool HasIntMember(const Json::Value& jsonObj, const std::string& name) const; 60 bool HasStringMember(const Json::Value& jsonObj, const std::string& name) const; 61 bool HasBoolMember(const Json::Value& jsonObj, const std::string& name) const;
|
/base/hiviewdfx/hiview/base/event_report/test/unittest/common/ |
H A D | event_report_unit_test.cpp | 33 TestLoggerEvent(const std::string& name, HiSysEvent::EventType type) in TestLoggerEvent() argument 34 : LoggerEvent(name, type) {} in TestLoggerEvent() 59 * @tc.name: EventReportUnitTest001 79 * @tc.name: EventReportUnitTest002 92 * @tc.name: EventReportUnitTest003 105 * @tc.name: EventReportUnitTest004 118 * @tc.name: EventReportUnitTest005 125 const std::string name = "TEST_NAME"; in HWTEST_F() local 129 HiviewEventReport::ReportPluginLoad(name, retCode); in HWTEST_F() 131 HiviewEventReport::ReportPluginUnload(name, retCod in HWTEST_F() [all...] |
/base/hiviewdfx/faultloggerd/common/trace/ |
H A D | dfx_trace_dlsym.cpp | 35 typedef void (*StartTraceFunc)(uint64_t tag, const char* name); 40 void DfxStartTraceDlsym(const char* name) in DfxStartTraceDlsym() argument 51 g_startTrace(TAG_APP, name); in DfxStartTraceDlsym() 93 void FormatTraceName(char *name, size_t size, const char *fmt, ...) in FormatTraceName() argument 95 if (!g_enableTrace || size < 1 || name == nullptr) { in FormatTraceName() 100 int ret = vsnprintf_s(name, size, size - 1, fmt, args); in FormatTraceName() 104 ret = strcpy_s(name, size, traceName.c_str()); in FormatTraceName()
|
/base/useriam/user_auth_framework/services/base/src/ |
H A D | system_ability_listener.cpp | 25 SystemAbilityListener::SystemAbilityListener(std::string name, int32_t systemAbilityId, in SystemAbilityListener() argument 27 : name_(name), systemAbilityId_(systemAbilityId), addFunc_(addFunc), removeFunc_(removeFunc) in SystemAbilityListener() 60 sptr<SystemAbilityListener> SystemAbilityListener::Subscribe(std::string name, int32_t systemAbilityId, in Subscribe() argument 63 IAM_LOGI("start name:%{public}s, systemAbilityId::%{public}d", name.c_str(), systemAbilityId); in Subscribe() 68 new (std::nothrow) SystemAbilityListener(name, systemAbilityId, addFunc, removeFunc)); in Subscribe() 73 IAM_LOGE("SubscribeSystemAbility fail, name:%{public}s, systemAbilityId::%{public}d", in Subscribe() 74 name.c_str(), systemAbilityId); in Subscribe() 78 IAM_LOGI("Subscribe service name:%{public}s success", name in Subscribe() [all...] |
/build/lite/ndk/ |
H A D | archive_ndk.py | 29 name = fields[0] + '.' + fields[1] + '.' + fields[2] 34 shutil.make_archive(name, file_format, archive_from, archive_to) 35 shutil.move('%s.%s' % (name, file_format), destination) 46 '--name', 47 help='NDK name.', 66 name = args.name 67 print(dest, name) 68 make_archive(src, dest + '-' + name + '.zip')
|
/kernel/linux/linux-5.10/arch/mips/include/asm/octeon/ |
H A D | cvmx-bootmem.h | 70 * can be changed without affecting compatibility, but name length 83 /* name of named block */ 84 char name[CVMX_BOOTMEM_NAME_LEN]; member 120 /* length of name array in bootmem blocks */ 167 * @name: name of block to free 176 * to the application by the bootloader, and assign it a name in the 182 * @name: name of block - must be less than CVMX_BOOTMEM_NAME_LEN bytes 187 char *name); [all...] |