Lines Matching refs:res
49 TEEC_Result res; in open_bench_pta() local
52 res = TEEC_InitializeContext(NULL, &ctx); in open_bench_pta()
53 tee_check_res(res, "TEEC_InitializeContext"); in open_bench_pta()
55 res = TEEC_OpenSession(&ctx, &sess, &pta_benchmark_uuid, in open_bench_pta()
57 tee_check_res(res, "TEEC_OpenSession"); in open_bench_pta()
69 TEEC_Result res; in alloc_bench_buf() local
80 res = TEEC_InvokeCommand(&sess, BENCHMARK_CMD_REGISTER_MEMREF, in alloc_bench_buf()
82 tee_check_res(res, "TEEC_InvokeCommand"); in alloc_bench_buf()
100 TEEC_Result res; in free_bench_buf() local
108 res = TEEC_InvokeCommand(&sess, BENCHMARK_CMD_UNREGISTER, in free_bench_buf()
110 tee_check_res(res, "TEEC_InvokeCommand"); in free_bench_buf()
384 char *res; in main() local
416 res = realpath(argv[1], testapp_path); in main()
417 if (!res) in main()