Home | History | Annotate | Download | only in src

Lines Matching defs:stat

41 #include <sys/stat.h>
104 #define LOC_GLUE_CHECK_RESULT(stat, ret_type) \
105 if (stat != RPC_SUCCESS) { \
106 LOC_LOGE("%s:%d] failure code %d", __func__, __LINE__, stat); \
107 return (ret_type)((stat == RPC_SUBSYSTEM_RESTART) ? \
361 enum clnt_stat stat = RPC_SUCCESS;
369 stat = RPC_FUNC_VERSION(rpc_loc_open_, RPC_LOC_OPEN_VERSION)(&args, &rets, loc_api_clnt);
373 }while( (RPC_SUCCESS != stat||0 > ret_val) && 0 != try_num );
375 LOC_GLUE_CHECK_RESULT(stat, int32);
398 enum clnt_stat stat = RPC_SUCCESS;
401 stat = RPC_FUNC_VERSION(rpc_loc_close_, RPC_LOC_CLOSE_VERSION)(&args, &rets, loc_api_clnt);
405 LOC_GLUE_CHECK_RESULT(stat, int32);
447 enum clnt_stat stat = RPC_SUCCESS;
450 stat = RPC_FUNC_VERSION(rpc_loc_start_fix_, RPC_LOC_START_FIX_VERSION)(&args, &rets, loc_api_clnt);
451 LOC_GLUE_CHECK_RESULT(stat, int32);
472 enum clnt_stat stat = RPC_SUCCESS;
475 stat = RPC_FUNC_VERSION(rpc_loc_stop_fix_, RPC_LOC_STOP_FIX_VERSION)(&args, &rets, loc_api_clnt);
476 LOC_GLUE_CHECK_RESULT(stat, int32);
572 enum clnt_stat stat = RPC_SUCCESS;
575 stat = RPC_FUNC_VERSION(rpc_loc_ioctl_, RPC_LOC_IOCTL_VERSION)(&args, &rets, loc_api_clnt);
576 LOC_GLUE_CHECK_RESULT(stat, int32);
589 enum clnt_stat stat = RPC_SUCCESS;
592 stat = RPC_FUNC_VERSION(rpc_loc_api_null_, RPC_LOC_API_NULL_VERSION)(NULL, &rets, loc_api_clnt);
593 LOC_GLUE_CHECK_RESULT(stat, int32);