Lines Matching refs:prefix

19 #define KMPP_OBJ_FUNC_DEFINE(prefix) \  argument
20 rk_s32 CONCAT_US(prefix, size)(void); \
21 rk_s32 CONCAT_US(prefix, get)(KMPP_OBJ_INTF_TYPE *p); \
22 rk_s32 CONCAT_US(prefix, assign)(KMPP_OBJ_INTF_TYPE *p, void *buf, rk_s32 size); \
23 rk_s32 CONCAT_US(prefix, put)(KMPP_OBJ_INTF_TYPE p); \
24 rk_s32 CONCAT_US(prefix, dump)(KMPP_OBJ_INTF_TYPE p, const char *caller); \
25 KmppObjDef CONCAT_US(prefix, objdef)(void);
47 #define ENTRY_DECLARE(prefix, ftype, type, name, flag, ...) \ argument
48 rk_s32 CONCAT_US(prefix, set, __VA_ARGS__)(KMPP_OBJ_INTF_TYPE p, type val); \
49 rk_s32 CONCAT_US(prefix, get, __VA_ARGS__)(KMPP_OBJ_INTF_TYPE p, type* val); \
50 rk_s32 CONCAT_US(prefix, test, __VA_ARGS__)(KMPP_OBJ_INTF_TYPE p);
52 #define STRCT_DECLARE(prefix, ftype, type, name, flag, ...) \ argument
53 rk_s32 CONCAT_US(prefix, set, __VA_ARGS__)(KMPP_OBJ_INTF_TYPE p, type* val); \
54 rk_s32 CONCAT_US(prefix, get, __VA_ARGS__)(KMPP_OBJ_INTF_TYPE p, type* val); \
55 rk_s32 CONCAT_US(prefix, test, __VA_ARGS__)(KMPP_OBJ_INTF_TYPE p);
57 #define ALIAS_DECLARE(prefix, ftype, type, name, flag, ...) argument
83 #define IOCTL_CTX(prefix, func, ...) \ argument
84 rk_s32 CONCAT_US(prefix, func)(KMPP_OBJ_INTF_TYPE ctx);
86 #define IOCTL_IN_(prefix, func, in_type, ...) \ argument
87 rk_s32 CONCAT_US(prefix, func)(KMPP_OBJ_INTF_TYPE ctx, in_type in);
89 #define IOCTL_OUT(prefix, func, out_type, ...) \ argument
90 rk_s32 CONCAT_US(prefix, func)(KMPP_OBJ_INTF_TYPE ctx, out_type *out);
92 #define IOCTL_IO_(prefix, func, in_type, out_type, ...) \ argument
93 rk_s32 CONCAT_US(prefix, func)(KMPP_OBJ_INTF_TYPE ctx, in_type in, out_type *out);