/commonlibrary/memory_utils/libpurgeablemem/c/src/ |
H A D | purgeable_mem_builder_c.c | 31 PurgMemBuilderFunc Build; member 49 builder->Build = func; in PurgMemBuilderCreate() 92 if (!(builder->Build)) { in PurgMemBuilderBuildAll() 93 PM_HILOG_ERROR_C(LOG_CORE, "builder has no Build(), %{public}s", builder->name); in PurgMemBuilderBuildAll() 96 if (!(builder->Build(data, size, builder->param))) { in PurgMemBuilderBuildAll()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/ |
H A D | error.rs | 223 Build, 261 Self::Build => "Build Error", in as_str() 350 assert_eq!(ErrorKind::Build.as_str(), "Build Error"); in ut_err_as_str() 384 HttpClientError::from_io_error(ErrorKind::Build, io::Error::from(io::ErrorKind::Other)); in ut_err_from_io_error() 385 assert_eq!(error_build.error_kind(), ErrorKind::Build); in ut_err_from_io_error() 396 ErrorKind::Build, in ut_err_from_error() 399 assert_eq!(error_build.error_kind(), ErrorKind::Build); in ut_err_from_error()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/verify/ |
H A D | pinning.rs | 25 use crate::ErrorKind::Build; 96 let parsed = Uri::try_from(uri).map_err(|e| HttpClientError::from_error(Build, e))?; in add() 99 return err_from_msg!(Build, "uri has no host"); in add() 246 "HttpClientError { ErrorKind: Build, Cause: uri has no host }" in ut_pubkey_pins_builder_add()
|
/commonlibrary/memory_utils/libpurgeablemem/cpp/include/ |
H A D | purgeable_mem_builder.h | 27 * In its member func Build(), user should define how to build the content of a PurgeableMem obj. 39 virtual bool Build(void *data, size_t size) = 0;
|
/commonlibrary/memory_utils/libpurgeablemem/cpp/src/ |
H A D | purgeable_mem_builder.cpp | 45 if (!Build(data, size)) { in BuildAll()
|
H A D | purgeable_mem_base.cpp | 154 if (!modifier->Build(dataPtr_, dataSizeInput_)) { in ModifyContentByBuilder()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ |
H A D | adapter.rs | 385 .map_err(|e| HttpClientError::from_error(ErrorKind::Build, e))?; in build() 567 HttpClientError::from_error(ErrorKind::Build, e) in from_pem() 584 HttpClientError::from_error(ErrorKind::Build, e) in from_der() 591 .map_err(|e| HttpClientError::from_error(ErrorKind::Build, e))? in stack_from_pem() 626 .map_err(|e| HttpClientError::from_error(ErrorKind::Build, e))? in from_pem()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/ |
H A D | redirect.rs | 130 ErrorKind::Build, in trigger()
|
H A D | proxy.rs | 159 return err_from_other!(Build, e);
|
/commonlibrary/memory_utils/libpurgeablemem/test/ |
H A D | purgeable_cpp_test.cpp | 51 bool Build(void *data, size_t size) in Build() function in OHOS::PurgeableMem::TestDataBuilder 85 bool Build(void *data, size_t size) in Build() function in OHOS::PurgeableMem::TestDataModifier 113 bool Build(void *data, size_t size) in Build() function in OHOS::PurgeableMem::TestBigDataBuilder
|
H A D | purgeableashmem_test.cpp | 58 bool Build(void *data, size_t size) in Build() function in OHOS::PurgeableMem::TestDataBuilder 92 bool Build(void *data, size_t size) in Build() function in OHOS::PurgeableMem::TestDataModifier 120 bool Build(void *data, size_t size) in Build() function in OHOS::PurgeableMem::TestBigDataBuilder
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ |
H A D | request.rs | 232 .map_err(|e| HttpClientError::from_error(ErrorKind::Build, e)) in body()
|
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/ |
H A D | settings.rs | 119 return err_from_msg!(Build, "Invalid params"); in new()
|
/commonlibrary/rust/ylong_http/ylong_http_client/tests/ |
H A D | sdv_async_http_client_error.rs | 32 assert_eq!(ErrorKind::Build.as_str(), "Build Error"); in sdv_client_error_kind()
|