Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 23 of 23) sorted by relevance

/rockchip-linux_mpp/osal/android/
H A Dos_log.c9 void os_log_trace(const char* tag, const char* msg, va_list list) in os_log_trace() argument
11 __android_log_vprint(ANDROID_LOG_VERBOSE, tag, msg, list); in os_log_trace()
14 void os_log_debug(const char* tag, const char* msg, va_list list) in os_log_debug() argument
16 __android_log_vprint(ANDROID_LOG_DEBUG, tag, msg, list); in os_log_debug()
19 void os_log_info(const char* tag, const char* msg, va_list list) in os_log_info() argument
21 __android_log_vprint(ANDROID_LOG_INFO, tag, msg, list); in os_log_info()
24 void os_log_warn(const char* tag, const char* msg, va_list list) in os_log_warn() argument
26 __android_log_vprint(ANDROID_LOG_WARN, tag, msg, list); in os_log_warn()
29 void os_log_error(const char* tag, const char* msg, va_list list) in os_log_error() argument
31 __android_log_vprint(ANDROID_LOG_ERROR, tag, msg, list); in os_log_error()
[all …]
/rockchip-linux_mpp/osal/linux/
H A Dos_log.c42 void os_log_trace(const char* tag, const char* msg, va_list list) in os_log_trace() argument
45 snprintf(line, sizeof(line) - 1, "%s: %s", tag, msg); in os_log_trace()
49 void os_log_debug(const char* tag, const char* msg, va_list list) in os_log_debug() argument
52 snprintf(line, sizeof(line) - 1, "%s: %s", tag, msg); in os_log_debug()
56 void os_log_info(const char* tag, const char* msg, va_list list) in os_log_info() argument
59 snprintf(line, sizeof(line) - 1, "%s: %s", tag, msg); in os_log_info()
63 void os_log_warn(const char* tag, const char* msg, va_list list) in os_log_warn() argument
66 snprintf(line, sizeof(line) - 1, "%s: %s", tag, msg); in os_log_warn()
70 void os_log_error(const char* tag, const char* msg, va_list list) in os_log_error() argument
73 snprintf(line, sizeof(line) - 1, "%s: %s", tag, msg); in os_log_error()
[all …]
/rockchip-linux_mpp/tools/
H A Dmpp_doxyfile20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
[all …]
H A Dchangelog.sh148 tag_log=$(git tag -v ${version_tag} | grep object)
158 git tag ${version_tag} -m "${version_tag} version at ${tag_date}"
222 git tag -f ${version_tag} -m "${version_tag} version at ${tag_date}"
/rockchip-linux_mpp/osal/
H A Dmpp_log.c43 static void __mpp_log(os_log_callback func, const char *tag, const char *fmt, in __mpp_log() argument
54 if (NULL == tag) in __mpp_log()
55 tag = MODULE_TAG; in __mpp_log()
77 func(tag, buf, args); in __mpp_log()
80 void _mpp_log(const char *tag, const char *fmt, const char *fname, ...) in _mpp_log() argument
87 __mpp_log(os_log_info, tag, fmt, fname, args); in _mpp_log()
91 void _mpp_err(const char *tag, const char *fmt, const char *fname, ...) in _mpp_err() argument
98 __mpp_log(os_log_error, tag, fmt, fname, args); in _mpp_err()
102 void _mpp_log_l(int level, const char *tag, const char *fmt, const char *fname, ...) in _mpp_log_l() argument
109 mpp_log_ext_cb(mpp_log_ext_ctx, level, tag, fmt, fname, args); in _mpp_log_l()
[all …]
H A Dos_log.h22 void os_log_trace(const char* tag, const char* msg, va_list list);
23 void os_log_debug(const char* tag, const char* msg, va_list list);
24 void os_log_info (const char* tag, const char* msg, va_list list);
25 void os_log_warn (const char* tag, const char* msg, va_list list);
26 void os_log_error(const char* tag, const char* msg, va_list list);
27 void os_log_fatal(const char* tag, const char* msg, va_list list);
/rockchip-linux_mpp/mpp/base/
H A Dmpp_buffer_impl.c121 static MppBufferGroupImpl *service_get_group(const char *tag, const char *caller,
422 MPP_RET mpp_buffer_create(const char *tag, const char *caller, in mpp_buffer_create() argument
468 if (!tag) in mpp_buffer_create()
469 tag = group->tag; in mpp_buffer_create()
471 snprintf(p->tag, sizeof(p->tag), "%s", tag); in mpp_buffer_create()
805 MPP_RET mpp_buffer_group_init(MppBufferGroupImpl **group, const char *tag, const char *caller, in mpp_buffer_group_init() argument
811 *group = service_get_group(tag, caller, mode, type, 0); in mpp_buffer_group_init()
957 char tag[32]; in mpp_buffer_get_misc_group() local
960 offset += snprintf(tag + offset, sizeof(tag) - offset, "misc"); in mpp_buffer_get_misc_group()
961 offset += snprintf(tag + offset, sizeof(tag) - offset, "_%s", in mpp_buffer_get_misc_group()
[all …]
H A Dmpp_buffer.c16 const char *tag, const char *caller) in mpp_buffer_import_with_tag() argument
44 ret = mpp_buffer_create(tag, caller, p, info, &buf); in mpp_buffer_import_with_tag()
47 ret = mpp_buffer_create(tag, caller, p, info, NULL); in mpp_buffer_import_with_tag()
53 const char *tag, const char *caller) in mpp_buffer_get_with_tag() argument
81 mpp_buffer_create(tag, caller, p, &info, &buf); in mpp_buffer_get_with_tag()
350 const char *tag, const char *caller) in mpp_buffer_group_get() argument
360 return mpp_buffer_group_init((MppBufferGroupImpl**)group, tag, caller, mode, type); in mpp_buffer_group_get()
H A Dmpp_meta.c276 static MppMetaImpl *get_meta(MppMetaSrv *srv, const char *tag, const char *caller) in get_meta() argument
281 const char *tag_src = (tag) ? (tag) : (MODULE_TAG); in get_meta()
284 strncpy(impl->tag, tag_src, sizeof(impl->tag) - 1); in get_meta()
345 MPP_RET mpp_meta_get_with_tag(MppMeta *meta, const char *tag, const char *caller) in mpp_meta_get_with_tag() argument
358 impl = get_meta(srv, tag, caller); in mpp_meta_get_with_tag()
535 ret = get_meta(srv, impl->tag, __FUNCTION__); in mpp_meta_dup()
H A Dmpp_trie.c90 rk_u64 tag; member
382 p->tag = 0; in mpp_trie_walk()
387 rk_u64 val_new = (p->tag << 4) | keyx; in mpp_trie_walk()
400 p->tag = val_new; in mpp_trie_walk()
408 p->tag = 0; in mpp_trie_walk()
449 walk.tag = 0; in mpp_trie_get_node()
/rockchip-linux_mpp/inc/
H A Dmpp_log.h77 void _mpp_log_l(int level, const char *tag, const char *fmt, const char *func, ...);
82 typedef void (*MppLogCb)(void *ctx, int level, const char *tag, const char *fmt, const char *func, …
86 void _mpp_log(const char *tag, const char *fmt, const char *func, ...);
87 void _mpp_err(const char *tag, const char *fmt, const char *func, ...);
H A Dmpp_buffer.h302 const char *tag, const char *caller);
304 const char *tag, const char *caller);
333 const char *tag, const char *caller);
H A Dmpp_meta.h174 MPP_RET mpp_meta_get_with_tag(MppMeta *meta, const char *tag, const char *caller);
/rockchip-linux_mpp/mpp/base/inc/
H A Dmpp_buffer_impl.h71 char tag[MPP_TAG_SIZE]; member
112 char tag[MPP_TAG_SIZE]; member
193 MPP_RET mpp_buffer_create(const char *tag, const char *caller, MppBufferGroupImpl *group, MppBuffer…
208 MPP_RET mpp_buffer_group_init(MppBufferGroupImpl **group, const char *tag, const char *caller, MppB…
H A Dmpp_meta_impl.h40 char tag[MPP_TAG_SIZE]; member
/rockchip-linux_mpp/mpp/hal/vpu/vp8d/
H A Dhal_vp8d_base.h40 #define FUN_T(tag) \ argument
43 { mpp_log("%s: line(%d), func(%s)", tag, __LINE__, __FUNCTION__); }\
/rockchip-linux_mpp/mpp/hal/vpu/m2vd/
H A Dhal_m2vd_base.h45 #define m2vh_dbg_func(tag) \ argument
48 { mpp_log("%s: line(%d), func(%s)", tag, __LINE__, __FUNCTION__); }\
/rockchip-linux_mpp/mpp/codec/dec/m2v/
H A Dm2vd_com.h113 #define m2vd_dbg_func(tag) \ argument
116 { mpp_log("%s: line(%d), func(%s)", tag, __LINE__, __FUNCTION__); }\
/rockchip-linux_mpp/osal/inc/
H A Dmpp_debug.h106 void mpp_llog(int level, const char *tag, const char *fmt, const char *func, ...);
/rockchip-linux_mpp/LICENSES/
H A DMIT4 To use the MIT License put the following SPDX tag/value pair into a
H A DApache-2.04 To use the Apache License version 2.0 put the following SPDX tag/value
/rockchip-linux_mpp/mpp/codec/dec/vp8/
H A Dvp8d_parser.c30 #define FUN_T(tag) \ argument
33 { mpp_log("%s: line(%d), func(%s)", tag, __LINE__, __FUNCTION__); }\
/rockchip-linux_mpp/
H A DCHANGELOG.md388 - [mpp_trie]: Add trie tag and shrink feature