/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/src/ |
H A D | zip_internal.cpp | 36 if ((opaque == nullptr) || (filename == nullptr)) { in FdOpenFileFunc() 50 int fd = dup(*static_cast<int *>(opaque)); in FdOpenFileFunc() 58 int FdCloseFileFunc(void *opaque, void *stream) in FdCloseFileFunc() argument 61 free(opaque); // malloc'ed in FillFdOpenFileFunc() in FdCloseFileFunc() 81 pzlibFilefuncDef->opaque = ptrFd; in FillFdOpenFileFunc() 111 return opaque; in OpenZipBuffer() 148 long GetOffsetOfZipBuffer(void *opaque, void *) in GetOffsetOfZipBuffer() argument 184 int CloseZipBuffer(void *opaque, void *) in CloseZipBuffer() argument 186 if (opaque) { in CloseZipBuffer() 187 free(opaque); in CloseZipBuffer() [all …]
|
/ohos5.0/base/security/dlp_permission_service/interfaces/inner_api/dlp_parse/src/ |
H A D | dlp_zip.cpp | 146 static void *FdOpenFileFunc(void *opaque, const char *filename, int mode) in FdOpenFileFunc() argument 148 if ((opaque == nullptr) || (filename == nullptr)) { in FdOpenFileFunc() 162 int fd = dup(*static_cast<int *>(opaque)); in FdOpenFileFunc() 171 static int FdCloseFileFunc(void *opaque, void *stream) in FdCloseFileFunc() argument 176 free(opaque); // malloc'ed in FillFdOpenFileFunc() in FdCloseFileFunc() 193 pzlibFilefuncDef->opaque = ptrFd; in FillFdOpenFileFunc()
|
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/muxer/ |
H A D | ffmpeg_muxer_plugin.h | 78 static int32_t IoRead(void* opaque, uint8_t* buf, int bufSize); 80 static int32_t IoWrite(void* opaque, uint8_t* buf, int bufSize); 82 static int64_t IoSeek(void* opaque, int64_t offset, int whence);
|
H A D | ffmpeg_muxer_plugin.cpp | 362 ptr->opaque = nullptr; in DeInitAvIoCtx() 507 int32_t FFmpegMuxerPlugin::IoRead(void* opaque, uint8_t* buf, int bufSize) in IoRead() argument 509 (void)opaque; in IoRead() 514 int32_t FFmpegMuxerPlugin::IoWrite(void* opaque, uint8_t* buf, int bufSize) in IoWrite() argument 516 auto ioCtx = static_cast<IOContext*>(opaque); in IoWrite() 543 int64_t FFmpegMuxerPlugin::IoSeek(void* opaque, int64_t offset, int whence) in IoSeek() argument 545 auto ioContext = static_cast<IOContext*>(opaque); in IoSeek()
|
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/demuxer/ |
H A D | ffmpeg_demuxer_plugin.h | 91 static int AVReadPacket(void* opaque, uint8_t* buf, int bufSize); // NOLINT: void* 93 static int AVWritePacket(void* opaque, uint8_t* buf, int bufSize); // NOLINT: void* 95 static int64_t AVSeek(void* opaque, int64_t offset, int whence); // NOLINT: void*
|
H A D | ffmpeg_demuxer_plugin.cpp | 532 int FFmpegDemuxerPlugin::AVReadPacket(void* opaque, uint8_t* buf, int bufSize) // NOLINT in AVReadPacket() argument 535 auto ioContext = static_cast<IOContext*>(opaque); in AVReadPacket() 563 int FFmpegDemuxerPlugin::AVWritePacket(void* opaque, uint8_t* buf, int bufSize) // NOLINT: intentio… in AVWritePacket() argument 565 (void)opaque; in AVWritePacket() 571 int64_t FFmpegDemuxerPlugin::AVSeek(void* opaque, int64_t offset, int whence) // NOLINT: void* in AVSeek() argument 573 auto ioContext = static_cast<IOContext*>(opaque); in AVSeek()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/include/ |
H A D | zip_internal.h | 36 void *FdOpenFileFunc(void *opaque, const char *filename, int mode); 38 int FdCloseFileFunc(void *opaque, void *stream);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/common/ |
H A D | rs_occlusion_region_test.cpp | 355 Rect opaque{353284384, 2147483647, 1184, 2147483647}; variable 358 Region opaqueRegion{opaque}; 379 Rect opaque{1021068672, 2147483647, 1024, 2147483647}; variable 382 Region opaqueRegion{opaque}; 403 Rect opaque{2147483647, 2147483647, 24964864, 2147483647}; variable 406 Region opaqueRegion{opaque};
|
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/muxer/ |
H A D | ffmpeg_muxer_plugin.h | 75 static int32_t IoRead(void *opaque, uint8_t *buf, int bufSize); 76 static int32_t IoWrite(void *opaque, uint8_t *buf, int bufSize); 77 static int64_t IoSeek(void *opaque, int64_t offset, int whence);
|
H A D | ffmpeg_muxer_plugin.cpp | 1052 delete static_cast<IOContext*>(ptr->opaque); in DeInitAvIoCtx() 1053 ptr->opaque = nullptr; in DeInitAvIoCtx() 1060 int32_t FFmpegMuxerPlugin::IoRead(void *opaque, uint8_t *buf, int bufSize) in IoRead() argument 1062 auto ioCtx = static_cast<IOContext*>(opaque); in IoRead() 1081 int32_t FFmpegMuxerPlugin::IoWrite(void *opaque, uint8_t *buf, int bufSize) in IoWrite() argument 1083 auto ioCtx = static_cast<IOContext*>(opaque); in IoWrite() 1102 int64_t FFmpegMuxerPlugin::IoSeek(void *opaque, int64_t offset, int whence) in IoSeek() argument 1104 auto ioContext = static_cast<IOContext*>(opaque); in IoSeek() 1131 *pb = InitAvIoCtx(static_cast<IOContext*>(s->pb->opaque)->dataSink_, 0); in IoOpen()
|
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/ |
H A D | ffmpeg_demuxer_plugin.h | 110 static int AVReadPacket(void* opaque, uint8_t* buf, int bufSize); 111 static int AVWritePacket(void* opaque, uint8_t* buf, int bufSize); 112 static int64_t AVSeek(void* opaque, int64_t offset, int whence); 115 static int CheckContextIsValid(void* opaque, int &bufSize);
|
H A D | ffmpeg_demuxer_plugin.cpp | 768 int FFmpegDemuxerPlugin::AVWritePacket(void* opaque, uint8_t* buf, int bufSize) in AVWritePacket() argument 770 (void)opaque; in AVWritePacket() 776 int FFmpegDemuxerPlugin::CheckContextIsValid(void* opaque, int &bufSize) in CheckContextIsValid() argument 779 auto ioContext = static_cast<IOContext*>(opaque); in CheckContextIsValid() 800 int FFmpegDemuxerPlugin::AVReadPacket(void* opaque, uint8_t* buf, int bufSize) in AVReadPacket() argument 802 int ret = CheckContextIsValid(opaque, bufSize); in AVReadPacket() 806 auto ioContext = static_cast<IOContext*>(opaque); in AVReadPacket() 855 int64_t FFmpegDemuxerPlugin::AVSeek(void* opaque, int64_t offset, int whence) in AVSeek() argument 857 auto ioContext = static_cast<IOContext*>(opaque); in AVSeek() 1000 ctx->opaque = nullptr; in InitAVFormatContext()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/ |
H A D | js-components-svg-common-attributes.md | 11 … fill color. The value ranges from **0** to **1**. The value **1** means opaque, and **0** means c… 13 … an element. The value ranges from **0** to **1**. The value **1** means opaque, and **0** means c… 20 … the stroke. The value ranges from **0** to **1**. The value **1** means opaque, and **0** means c…
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/ |
H A D | js-apis-arkui-theme.md | 60 …olor](arkui-ts/ts-types.md#resourcecolor) | No | No | Primary background color (solid, opaque). | 61 …or](arkui-ts/ts-types.md#resourcecolor) | No | No | Secondary background color (solid, opaque). | 62 …lor](arkui-ts/ts-types.md#resourcecolor) | No | No | Tertiary background color (solid, opaque). | 63 …(arkui-ts/ts-types.md#resourcecolor) | No | No | Fourth-level background color (solid, opaque). | 64 …lor](arkui-ts/ts-types.md#resourcecolor) | No | No | Emphasis background color (solid, opaque). |
|
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/utils/src/ |
H A D | lnn_compress.c | 50 strm.opaque = Z_NULL; in DataCompress() 138 strm.opaque = Z_NULL; in DataDecompress()
|
/ohos5.0/docs/en/application-dev/ui/ |
H A D | theme_skinning.md | 334 | theme.colors.backgroundPrimary | Primary background color (solid, opaque).| #ffffffff… 335 | theme.colors.backgroundSecondary | Secondary background color (solid, opaque).| #fff1f3… 336 | theme.colors.backgroundTertiary | Tertiary background color (solid, opaque).| #ffe5e5e… 337 | theme.colors.backgroundFourth | Quaternary background color (solid, opaque).| #ffd1d… 338 | theme.colors.backgroundEmphasize | Emphasis background color (solid, opaque).| #ff0a59f…
|
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/utils/src/ |
H A D | dh_utils_tool.cpp | 230 strm.opaque = Z_NULL; in Compress() 254 strm.opaque = Z_NULL; in Decompress()
|
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/util/ |
H A D | dump_compressor.cpp | 59 zStream_.opaque = Z_NULL; in Compress()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-universal-attributes-opacity.md | 23 …ty of the component. The value ranges from 0 to 1. The value **1** means opaque, and **0** means c…
|
/ohos5.0/docs/en/application-dev/reference/apis-image-kit/ |
H A D | _ohos_pixel_map_create_ops.md | 46 | 1 | There is no alpha or the image is opaque.|
|
/ohos5.0/base/hiviewdfx/hilog/services/hilogd/ |
H A D | log_compress.cpp | 55 cStream.opaque = Z_NULL; in Compress()
|
/ohos5.0/docs/en/design/ux-design/ |
H A D | design-resources.md | 33 …d in the form of RGB or ARGB. The color represented by RGB is completely opaque, and the opacity o…
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js-lite/ |
H A D | js-lite-components-container-list-item.md | 46 … an element. The value ranges from **0** to **1**. The value **1** means opaque, and **0** means c…
|
/ohos5.0/docs/en/application-dev/reference/apis-arkts/ |
H A D | js-apis-uri.md | 59 …hierarchical URI, and the URI that does not start with a slash (/) is an opaque URI. Set this part… 267 > If the URI is opaque or its path is already in normalized, the URI is directly returned. Otherwis… 329 Checks whether this URI is an opaque URI. The URI that does not start with a slash (/) is an opaque… 339 | boolean | **true**: The URI is an opaque URI.<br>**false**: The URI is not an opaque URI.|
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/assets/3d/shaders/shader/ |
H A D | core3d_dm_df.frag | 94 // NOTE: by the spec with blend mode opaque alpha should be 1.0 from this calculation
|