Lines Matching refs:error

34 	uint32 error = VBP_OK;
38 return error;
53 return error;
63 uint32 error = VBP_OK;
95 error = VBP_LOAD;
103 error = VBP_MEM;
133 error = pcontext->func_init_parser_entries(pcontext);
137 if (VBP_OK != error)
139 /* no need to log error. the loader would have done so already. */
143 return error;
187 uint32 error = VBP_OK;
194 error = VBP_MEM;
209 error = VBP_MEM;
226 error = VBP_CXT;
237 error = VBP_MEM;
247 error = VBP_MEM;
252 error = pcontext->func_allocate_query_data(pcontext);
255 if (error != VBP_OK)
259 return error;
273 uint32 error = VBP_OK;
303 error = pcontext->func_parse_init_data(pcontext);
307 error = pcontext->func_parse_start_code(pcontext);
310 if (VBP_OK != error)
313 return error;
347 error = ops->parse_syntax((void *)cxt, (void *)&(cxt->codec_data[0]));
349 /* can't return error for now. Neet further investigation */
351 /*if (0 != error)
353 ETRACE("failed to parse the syntax: %d!", error);
354 return error;
360 error = pcontext->func_process_parsing_result(pcontext, i);
362 if (0 != error)
365 return error;
377 error = ops->is_wkld_done(
397 uint32 error = VBP_OK;
406 error = VBP_MEM;
413 error = vbp_utils_initialize_context(pcontext);
414 if (VBP_OK != error)
420 error = vbp_utils_allocate_parser_memory(pcontext);
421 if (VBP_OK != error)
449 error = VBP_OK;
453 if (VBP_OK != error)
461 return error;
490 uint32 error = VBP_OK;
507 error = vbp_utils_parse_es_buffer(pcontext, init_data_flag);
514 return error;
525 uint32 error = VBP_OK;
527 error = pcontext->func_populate_query_data(pcontext);
528 if (VBP_OK == error)
536 return error;