Home
last modified time | relevance | path

Searched refs:str (Results 3851 - 3875 of 14489) sorted by relevance

1...<<151152153154155156157158159160>>...580

/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/test/fuzztest/
H A Dget_object.h76 std::string str(cstr); in GetStringFromData()
77 return str; in GetStringFromData()
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane_link_conflict/
H A Dlnn_lane_link_conflict_deps_mock.cpp67 int32_t SoftBusGenerateStrHash(const unsigned char *str, uint32_t len, unsigned char *hash) in SoftBusGenerateStrHash() argument
69 return GetLaneLinkConflictDepsInterface()->SoftBusGenerateStrHash(str, len, hash); in SoftBusGenerateStrHash()
/foundation/communication/dsoftbus/tests/core/adapter/unittest/
H A Dlnn_ohos_account_mock.h31 virtual int32_t SoftBusGenerateStrHash(const unsigned char *str, uint32_t len, unsigned char *hash) = 0;
42 MOCK_METHOD3(SoftBusGenerateStrHash, int32_t (const unsigned char *str, uint32_t len, unsigned char *hash));
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/idl_client/unittest/
H A Dmock_serial.h93 * @param str - string
96 int WriteStr(Context *context, const char *str);
175 * @param str - pointer to the string
176 * @param count - Size of str
179 int ReadStr(Context *context, char *str, int count);
/foundation/communication/wifi/wifi/base/cRPC/include/
H A Dserial.h93 * @param str - string
96 int WriteStr(Context *context, const char *str);
175 * @param str - pointer to the string
176 * @param count - Size of str
179 int ReadStr(Context *context, char *str, int count);
/foundation/distributedhardware/distributed_camera/common/include/utils/
H A Ddcamera_hitrace_adapter.h49 void DcameraStartAsyncTrace(const std::string& str, int32_t taskId);
50 void DcameraFinishAsyncTrace(const std::string& str, int32_t taskId);
/foundation/filemanagement/dfs_service/utils/system/include/
H A Ddfsu_exception.h62 LOGE("%{public}s", __ss.str().c_str()); \
63 throw DfsuException((code), __ss.str()); \
/foundation/distributedhardware/distributed_hardware_fwk/utils/test/fuzztest/utils_fuzzer/
H A Dutils_fuzzer.cpp33 std::string str(reinterpret_cast<const char*>(data), size); in GetAnonyStringTest()
34 GetAnonyString(str); in GetAnonyStringTest()
/foundation/filemanagement/dfs_service/utils/log/src/
H A Dutils_log.cpp19 std::string GetFileNameFromFullPath(const char *str) in GetFileNameFromFullPath() argument
21 std::string fullPath(str); in GetFileNameFromFullPath()
/kernel/linux/linux-5.10/crypto/
H A Dfips.c23 static int fips_enable(char *str) in fips_enable() argument
25 fips_enabled = !!simple_strtol(str, NULL, 0); in fips_enable()
/kernel/linux/linux-6.6/arch/um/drivers/
H A Dchan.h31 extern int parse_chan_pair(char *str, struct line *line, int device,
45 extern int chan_config_string(struct line *line, char *str, int size,
/kernel/linux/linux-5.10/scripts/genksyms/
H A Dkeywords.c65 static int is_reserved_word(register const char *str, register unsigned int len) in is_reserved_word() argument
71 if (len == l && !memcmp(str, r->name, len)) in is_reserved_word()
/kernel/linux/linux-5.10/mm/
H A Dfailslab.c36 static int __init setup_failslab(char *str) in setup_failslab() argument
38 return setup_fault_attr(&failslab.attr, str); in setup_failslab()
/kernel/linux/linux-5.10/drivers/ras/
H A Dras.c47 static int __init parse_ras_param(char *str) in parse_ras_param() argument
50 parse_cec_param(str); in parse_ras_param()
/kernel/linux/linux-6.6/drivers/ras/
H A Dras.c47 static int __init parse_ras_param(char *str) in parse_ras_param() argument
50 parse_cec_param(str); in parse_ras_param()
/kernel/linux/linux-6.6/drivers/iommu/intel/
H A Dperf.h44 int dmar_latency_snapshot(struct intel_iommu *iommu, char *str, size_t size);
69 dmar_latency_snapshot(struct intel_iommu *iommu, char *str, size_t size) in dmar_latency_snapshot() argument
/kernel/linux/linux-6.6/scripts/genksyms/
H A Dkeywords.c68 static int is_reserved_word(register const char *str, register unsigned int len) in is_reserved_word() argument
74 if (len == l && !memcmp(str, r->name, len)) in is_reserved_word()
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/dexcr/
H A Ddexcr.h25 str(.long (0x7C0005A4 | PPC_RAW_HASH_ARGS(b, i, a));)
27 str(.long (0x7C0005E4 | PPC_RAW_HASH_ARGS(b, i, a));)
/kernel/liteos_a/testsuites/unittest/basic/mem/vm/smoke/
H A Duser_copy_test_001.cpp40 const char *str = "Hi, OHOS."; in Testcase() local
62 reinterpret_cast<sigset_t *>(const_cast<char *>(str))); in Testcase()
/kernel/liteos_a/apps/perf/include/
H A Doption.h56 const char **str; member
68 #define OPTION_STRING(n, s) {.type = OPTION_TYPE_STRING, .name = (n), .str = (s)}
/third_party/elfio/tests/
H A Delfio_fuzzer.cpp11 std::string str( (const char*)Data, Size ); in LLVMFuzzerTestOneInput()
12 std::istringstream ss( str ); in LLVMFuzzerTestOneInput()
/third_party/elfutils/libasm/
H A Ddisasm_str.c46 buffer_cb (char *str, size_t len, void *arg) in buffer_cb() argument
54 buffer->buf = mempcpy (buffer->buf, str, len); in buffer_cb()
/third_party/elfutils/libdwelf/
H A Dlibdwelf.h93 extern Dwelf_Strent *dwelf_strtab_add (Dwelf_Strtab *st, const char *str)
98 zero terminator. Calling dwelf_strtab_add (st, str) is similar to
99 calling dwelf_strtab_len (st, str, strlen (str) + 1). */
101 const char *str, size_t len)
/third_party/glslang/glslang/MachineIndependent/preprocessor/
H A DPpAtom.cpp96 const char* str; member
176 addAtomFixed(tokens[ii].str, tokens[ii].val); in TStringAtomMap()
/third_party/cups-filters/filter/
H A Dpdfutils.h48 * >len==-1: use strlen(str)
50 void pdfOut_putString(pdfOut *pdf,const char *str,int len);
51 void pdfOut_putHexString(pdfOut *pdf,const char *str,int len);

Completed in 11 milliseconds

1...<<151152153154155156157158159160>>...580