Lines Matching refs:hnd
25 status_t ppOpInit(PP_OP_HANDLE *hnd, PP_OPERATION *init) in ppOpInit() argument
27 (void)hnd; in ppOpInit()
32 status_t ppOpSet(PP_OP_HANDLE hnd, PP_SET_OPT opt, RK_U32 val) in ppOpSet() argument
34 (void)hnd; in ppOpSet()
40 status_t ppOpPerform(PP_OP_HANDLE hnd) in ppOpPerform() argument
42 (void)hnd; in ppOpPerform()
46 status_t ppOpSync(PP_OP_HANDLE hnd) in ppOpSync() argument
48 (void)hnd; in ppOpSync()
52 status_t ppOpRelease(PP_OP_HANDLE hnd) in ppOpRelease() argument
54 (void)hnd; in ppOpRelease()
88 android::PP_OP_HANDLE hnd; in main() local
175 ret |= android::ppOpInit(&hnd, &opt); in main()
178 hnd = NULL; in main()
181 ret = android::ppOpPerform(hnd); in main()
185 ret = android::ppOpSync(hnd); in main()
189 ret = android::ppOpRelease(hnd); in main()