Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 829) sorted by relevance

12345678910>>...34

/foundation/graphic/graphic_2d/rosen/build/flutter/icu/
DBUILD.gn24 "//third_party/icu/icu4c/source/common",
25 "//third_party/icu/icu4c/source/i18n",
26 "//third_party/icu/icu4c/source/ohos",
27 "//third_party/icu/icu4c/source",
31 "$skia_root/third_party/externals/icu/source/common",
32 "$skia_root/third_party/externals/icu/source/i18n",
33 "$skia_root/third_party/externals/icu/source",
144 "$skia_root/third_party/externals/icu/source/common/appendable.cpp",
145 "$skia_root/third_party/externals/icu/source/common/bmpset.cpp",
146 "$skia_root/third_party/externals/icu/source/common/brkeng.cpp",
[all …]
/foundation/multimedia/av_codec/test/moduletest/demuxer/src/
Dapi_test.cpp48 static OH_AVSource *source = nullptr; variable
77 if (source != nullptr) { in TearDown()
78 OH_AVSource_Destroy(source); in TearDown()
79 source = nullptr; in TearDown()
101 source = OH_AVSource_CreateWithURI(nullptr);
102 ASSERT_EQ(nullptr, source);
113 source = OH_AVSource_CreateWithFD(2, 0, 0);
114 ASSERT_EQ(nullptr, source);
125 source = OH_AVSource_CreateWithFD(3, 0, -1);
126 ASSERT_EQ(nullptr, source);
[all …]
Dperf_test.cpp78 OH_AVSource *source = OH_AVSource_CreateWithFD(fd, 0, 0); variable
79 ASSERT_NE(source, nullptr);
80 OH_AVDemuxer *demuxer = OH_AVDemuxer_CreateWithSource(source);
88 OH_AVSource_Destroy(source);
104 OH_AVSource *source = OH_AVSource_CreateWithFD(fd, 0, 0); variable
105 ASSERT_NE(source, nullptr);
106 OH_AVDemuxer *demuxer = OH_AVDemuxer_CreateWithSource(source);
114 OH_AVSource_Destroy(source);
130 OH_AVSource *source = OH_AVSource_CreateWithFD(fd, 0, 0); variable
131 ASSERT_NE(source, nullptr);
[all …]
Dfunc_test.cpp45 static OH_AVSource *source = nullptr; variable
77 if (source != nullptr) { in TearDown()
78 OH_AVSource_Destroy(source); in TearDown()
79 source = nullptr; in TearDown()
114 source = OH_AVSource_CreateWithURI(const_cast<char *>(uri));
115 ASSERT_EQ(nullptr, source);
126 source = OH_AVSource_CreateWithURI(const_cast<char *>(uri));
127 ASSERT_EQ(nullptr, source);
142 source = OH_AVSource_CreateWithFD(fd, 0, size);
143 demuxer = OH_AVDemuxer_CreateWithSource(source);
[all …]
Dreli_test.cpp45 static OH_AVSource *source = nullptr; variable
84 if (source != nullptr) { in TearDown()
85 OH_AVSource_Destroy(source); in TearDown()
86 source = nullptr; in TearDown()
269 source = OH_AVSource_CreateWithFD(g_fdList[15], 0, size);
270 ASSERT_EQ(source, nullptr);
271 demuxer = OH_AVDemuxer_CreateWithSource(source);
295 source = OH_AVSource_CreateWithFD(fd, 0, size);
296 ASSERT_NE(source, nullptr);
298 demuxer = OH_AVDemuxer_CreateWithSource(source);
[all …]
/foundation/multimedia/av_codec/frameworks/native/capi/avsource/
Dnative_avsource.cpp34 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithURI(uri); in OH_AVSource_CreateWithURI() local
35 …CHECK_AND_RETURN_RET_LOG(source != nullptr, nullptr, "New source with uri failed by AVSourceFactor… in OH_AVSource_CreateWithURI()
37 struct AVSourceObject *object = new(std::nothrow) AVSourceObject(source); in OH_AVSource_CreateWithURI()
52 std::shared_ptr<AVSource> source = AVSourceFactory::CreateWithFD(fd, offset, size); in OH_AVSource_CreateWithFD() local
53 …CHECK_AND_RETURN_RET_LOG(source != nullptr, nullptr, "New source with fd failed by AVSourceFactory… in OH_AVSource_CreateWithFD()
55 struct AVSourceObject *object = new(std::nothrow) AVSourceObject(source); in OH_AVSource_CreateWithFD()
61 OH_AVErrCode OH_AVSource_Destroy(OH_AVSource *source) in OH_AVSource_Destroy() argument
63 CHECK_AND_RETURN_RET_LOG(source != nullptr, AV_ERR_INVALID_VAL, in OH_AVSource_Destroy()
65 …CHECK_AND_RETURN_RET_LOG(source->magic_ == AVMagic::AVCODEC_MAGIC_AVSOURCE, AV_ERR_INVALID_VAL, "m… in OH_AVSource_Destroy()
67 delete source; in OH_AVSource_Destroy()
[all …]
/foundation/communication/ipc/interfaces/innerkits/ipc_core/
DBUILD.gn41 "$IPC_CORE_ROOT/src/core/source/buffer_object.cpp",
42 "$IPC_CORE_ROOT/src/core/source/comm_auth_info.cpp",
43 "$IPC_CORE_ROOT/src/core/source/databus_session_callback.cpp",
44 "$IPC_CORE_ROOT/src/core/source/dbinder_callback_stub.cpp",
45 "$IPC_CORE_ROOT/src/core/source/dbinder_session_object.cpp",
46 "$IPC_CORE_ROOT/src/core/source/ipc_file_descriptor.cpp",
47 "$IPC_CORE_ROOT/src/core/source/ipc_object_proxy.cpp",
48 "$IPC_CORE_ROOT/src/core/source/ipc_object_stub.cpp",
49 "$IPC_CORE_ROOT/src/core/source/ipc_process_skeleton.cpp",
50 "$IPC_CORE_ROOT/src/core/source/ipc_skeleton.cpp",
[all …]
/foundation/arkui/ui_lite/frameworks/imgdecode/
Dimage_load.cpp85 uint32_t* source = reinterpret_cast<uint32_t*>(imageBuffer); in UnzipImage() local
93 while ((source < sourceEnd) && (dest < destEnd)) { in UnzipImage()
94 if (*source != BITMAP_ZIP_FLAG) { in UnzipImage()
95 *dest++ = *source++; in UnzipImage()
97 source++; in UnzipImage()
98 uint32_t value = *source++; in UnzipImage()
99 uint32_t count = *source++; in UnzipImage()
125 uint8_t* source = reinterpret_cast<uint8_t*>(imageBuffer); in Unzip24Image() local
129 while ((source < sourceEnd) && (dest < destEnd)) { in Unzip24Image()
131 uint32_t value = ((*source)) + (*(source + BITMAP_MID_BIT) << MOVE_LOW) in Unzip24Image()
[all …]
/foundation/multimodalinput/input/etc/mouse_icon/
DBUILD.gn18 source = "src/Colorsucker.svg"
25 source = "src/Copy.svg"
32 source = "src/Cross.svg"
39 source = "src/Default.svg"
46 source = "src/East.svg"
53 source = "src/Forbid.svg"
60 source = "src/Hand_Grabbing.svg"
67 source = "src/Hand_Open.svg"
74 source = "src/Hand_Pointing.svg"
81 source = "src/Help.svg"
[all …]
/foundation/distributeddatamgr/relational_store/frameworks/native/dataability/src/
Ddata_ability_predicates.cpp37 DataAbilityPredicates::DataAbilityPredicates(OHOS::Parcel *source) : isRawSelection(false), judgeSo… in DataAbilityPredicates() argument
39 if (source == nullptr) { in DataAbilityPredicates()
42 this->isRawSelection = source->ReadBool(); in DataAbilityPredicates()
43 …std::string whereClause = (source->ReadInt32() != g_invalidObjectFlag) ? source->ReadString() : ""; in DataAbilityPredicates()
45 if (source->ReadInt32() != g_invalidObjectFlag) { in DataAbilityPredicates()
46 source->ReadStringVector(&whereArgs); in DataAbilityPredicates()
48 bool isDistinct = source->ReadBool(); in DataAbilityPredicates()
49 … std::string index = (source->ReadInt32() != g_invalidObjectFlag) ? source->ReadString() : ""; in DataAbilityPredicates()
50 … std::string group = (source->ReadInt32() != g_invalidObjectFlag) ? source->ReadString() : ""; in DataAbilityPredicates()
51 … std::string order = (source->ReadInt32() != g_invalidObjectFlag) ? source->ReadString() : ""; in DataAbilityPredicates()
[all …]
/foundation/communication/ipc/interfaces/innerkits/ipc_single/
DBUILD.gn37 "$IPC_CORE_ROOT/src/core/source/ipc_file_descriptor.cpp",
38 "$IPC_CORE_ROOT/src/core/source/ipc_object_proxy.cpp",
39 "$IPC_CORE_ROOT/src/core/source/ipc_object_stub.cpp",
40 "$IPC_CORE_ROOT/src/core/source/ipc_process_skeleton.cpp",
41 "$IPC_CORE_ROOT/src/core/source/ipc_skeleton.cpp",
42 "$IPC_CORE_ROOT/src/core/source/ipc_thread_pool.cpp",
43 "$IPC_CORE_ROOT/src/core/source/ipc_thread_skeleton.cpp",
44 "$IPC_CORE_ROOT/src/core/source/ipc_workthread.cpp",
45 "$IPC_CORE_ROOT/src/core/source/iremote_broker.cpp",
46 "$IPC_CORE_ROOT/src/core/source/iremote_object.cpp",
[all …]
/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/
DBUILD.gn53 "${samgr_dir}/utils/native/source/tools.cpp",
54 "${samgr_services_dir}/source/ability_death_recipient.cpp",
55 "${samgr_services_dir}/source/collect/device_param_collect.cpp",
56 "${samgr_services_dir}/source/collect/device_status_collect_manager.cpp",
57 "${samgr_services_dir}/source/collect/device_timed_collect.cpp",
58 "${samgr_services_dir}/source/collect/icollect_plugin.cpp",
59 "${samgr_services_dir}/source/memory_guard.cpp",
60 "${samgr_services_dir}/source/rpc_callback_imp.cpp",
61 "${samgr_services_dir}/source/schedule/system_ability_event_handler.cpp",
62 "${samgr_services_dir}/source/schedule/system_ability_state_machine.cpp",
[all …]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
Dpixel_convert_test.cpp121 uint8_t source[2] = { 0xA0, 0x64 }; variable
125 colorConverterPointer->Convert(destination, source, 1);
126 ASSERT_NE(&source, nullptr);
145 uint8_t *source = nullptr; variable
149 colorConverterPointer->Convert(destination, source, 1);
169 uint8_t source[2] = { 0xA0, 0x64 }; variable
173 colorConverterPointer->Convert(destination, source, 1);
174 ASSERT_NE(source[0], 1);
240 uint8_t source[50] = { 0 }; variable
255 colorConverterPointer->Convert(destination, source, 2);
[all …]
/foundation/arkui/ui_lite/tools/qt/simulator/third_party/icu/
Dicu.pro21 ../../../../../../../../third_party/icu/icu4c/source/common/cmemory.cpp \
22 ../../../../../../../../third_party/icu/icu4c/source/common/cstring.cpp \
23 ../../../../../../../../third_party/icu/icu4c/source/common/ubidi.cpp \
24 ../../../../../../../../third_party/icu/icu4c/source/common/ubidi_props.cpp \
25 ../../../../../../../../third_party/icu/icu4c/source/common/ubidiln.cpp \
26 ../../../../../../../../third_party/icu/icu4c/source/common/ubidiwrt.cpp \
27 ../../../../../../../../third_party/icu/icu4c/source/common/uchar.cpp \
28 ../../../../../../../../third_party/icu/icu4c/source/common/udataswp.cpp \
29 ../../../../../../../../third_party/icu/icu4c/source/common/uinvchar.cpp \
30 ../../../../../../../../third_party/icu/icu4c/source/common/ustring.cpp \
[all …]
/foundation/ai/ai_engine/services/server/
DCMakeLists.txt36 communication_adapter/source/adapter_wrapper.cpp
37 communication_adapter/source/client_listener_handler.cpp
38 communication_adapter/source/future_listener.cpp
39 communication_adapter/source/sa_async_handler.cpp
40 communication_adapter/source/sa_server.c
41 communication_adapter/source/sa_server_adapter.cpp
42 communication_adapter/source/start_server.c
44 plugin/asr/keyword_spotting/source/kws_plugin.cpp
46 plugin/cv/image_classification/source/ic_plugin.cpp
54 plugin_manager/source/aie_plugin_info.cpp
[all …]
/foundation/systemabilitymgr/samgr_lite/samgr_endpoint/
DBUILD.gn30 "./source",
37 "source/client_factory.c",
38 "source/default_client_rpc.c",
39 "source/default_client_small_adapter.c",
40 "source/endpoint_rpc.c",
41 "source/samgr_small_ipc_adapter.c",
42 "source/token_bucket.c",
70 sources = [ "source/sa_store.c" ]
101 "./source",
103 "//foundation/systemabilitymgr/samgr_lite/samgr_server/source",
[all …]
/foundation/multimodalinput/input/patch/prebuild_eudev/
DBUILD.gn17 source = "udev.conf"
24 source = "hwdb.d/20-acpi-vendor.hwdb"
31 source = "hwdb.d/20-bluetooth-vendor-product.hwdb"
38 source = "hwdb.d/20-libgphoto2-6.hwdb"
45 source = "hwdb.d/20-net-ifname.hwdb"
52 source = "hwdb.d/20-OUI.hwdb"
59 source = "hwdb.d/20-pci-classes.hwdb"
66 source = "hwdb.d/20-pci-vendor-model.hwdb"
73 source = "hwdb.d/20-sane.hwdb"
80 source = "hwdb.d/20-sdio-classes.hwdb"
[all …]
/foundation/systemabilitymgr/samgr/services/samgr/native/
DBUILD.gn40 …"//foundation/systemabilitymgr/samgr/frameworks/native/source/system_ability_load_callback_stub.cp…
41 "//foundation/systemabilitymgr/samgr/services/dfx/source/hicollie_helper.cpp",
42 "//foundation/systemabilitymgr/samgr/services/dfx/source/hisysevent_adapter.cpp",
44 "//foundation/systemabilitymgr/samgr/services/samgr/native/source/ability_death_recipient.cpp",
45 …"//foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/device_param_collect.cpp…
46 …"//foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/device_status_collect_ma…
47 …"//foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/device_timed_collect.cpp…
48 "//foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/icollect_plugin.cpp",
49 "//foundation/systemabilitymgr/samgr/services/samgr/native/source/main.cpp",
50 "//foundation/systemabilitymgr/samgr/services/samgr/native/source/memory_guard.cpp",
[all …]
/foundation/multimodalinput/input/patch/prebuild_libinput/
DBUILD.gn17 source = "//third_party/libinput/quirks/10-generic-keyboard.quirks"
24 source = "//third_party/libinput/quirks/10-generic-lid.quirks"
31 source = "//third_party/libinput/quirks/10-generic-trackball.quirks"
38 source = "//third_party/libinput/quirks/30-vendor-aiptek.quirks"
45 source = "//third_party/libinput/quirks/30-vendor-alps.quirks"
52 source = "//third_party/libinput/quirks/30-vendor-contour.quirks"
59 source = "//third_party/libinput/quirks/30-vendor-cypress.quirks"
66 source = "//third_party/libinput/quirks/30-vendor-elantech.quirks"
73 source = "//third_party/libinput/quirks/30-vendor-ibm.quirks"
80 source = "//third_party/libinput/quirks/30-vendor-kensington.quirks"
[all …]
/foundation/systemabilitymgr/samgr/test/fuzztest/systemabilitymanager_fuzzer/
DBUILD.gn50 "${samgr_dir}/utils/native/source/tools.cpp",
51 "${samgr_services_dir}/source/collect/device_param_collect.cpp",
52 "${samgr_services_dir}/source/collect/device_status_collect_manager.cpp",
53 "${samgr_services_dir}/source/collect/device_timed_collect.cpp",
54 "${samgr_services_dir}/source/collect/icollect_plugin.cpp",
55 "${samgr_services_dir}/source/memory_guard.cpp",
56 "${samgr_services_dir}/source/schedule/system_ability_event_handler.cpp",
57 "${samgr_services_dir}/source/schedule/system_ability_state_machine.cpp",
58 "${samgr_services_dir}/source/schedule/system_ability_state_scheduler.cpp",
59 "${samgr_services_dir}/source/system_ability_manager.cpp",
[all …]
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
Dstring_utils.h31 static bool IsEmpty(std::string source) in IsEmpty() argument
33 return (source.empty()); in IsEmpty()
36 static std::string Trim(const std::string &source) in Trim() argument
38 if (source.empty()) { in Trim()
41 std::string replaceResult = source; in Trim()
44 return source; in Trim()
/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
Dmodule_hdi_source.c97 pa_source *source = NULL; in pa__get_n_used() local
100 pa_assert_se(source = m->userdata); in pa__get_n_used()
102 return pa_source_linked_by(source); in pa__get_n_used()
107 pa_source *source = NULL; in pa__done() local
111 if ((source = m->userdata)) { in pa__done()
112 PaHdiSourceFree(source); in pa__done()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/include/
Dstring_utils.h31 static bool IsEmpty(std::string source) in IsEmpty() argument
33 return (source.empty()); in IsEmpty()
36 static std::string Trim(const std::string &source) in Trim() argument
38 if (source.empty()) { in Trim()
41 std::string replaceResult = source; in Trim()
44 return source; in Trim()
/foundation/ai/ai_engine/services/common/
DCMakeLists.txt34 platform/dl_operation/source/aie_dl_operation.cpp
36 platform/event/source/event.cpp
39 platform/lock/source/rw_lock.cpp
45 platform/os_wrapper/audio_loader/source/codec/decoder_wrapper.cpp
46 platform/os_wrapper/audio_loader/source/audio_utils.cpp
47 platform/os_wrapper/audio_loader/source/audio_wrapper.cpp
57 platform/os_wrapper/feature/source/norm_processor.cpp
58 platform/os_wrapper/feature/source/slide_window_processor.cpp
59 platform/os_wrapper/feature/source/type_converter.cpp
61 platform/os_wrapper/ipc/source/aie_ipc.cpp
[all …]
/foundation/multimedia/player_framework/services/engine/gstreamer/avmetadatahelper/
Davmeta_meta_collector.h36 void AddMetaSource(GstElement &source);
37 void RemoveMetaSource(GstElement &source);
45 uint8_t ProbeElemType(GstElement &source);
46 void AddElemCollector(GstElement &source, uint8_t type);
47 void AddElemBlocker(GstElement &source, uint8_t type);
48 void RemoveElemBlocker(GstElement &source, uint8_t type);
49 void UpdateElemBlocker(GstElement &source, uint8_t elemType);

12345678910>>...34