Lines Matching refs:result

422     int32_t result = -1; // results are only directly returned on failure  in setupMgmt()  local
433 sendToApp(mCmd, transactionId, &result, sizeof(result)); in setupMgmt()
442 sendToApp(mCmd, transactionId, &result, sizeof(result)); in setupMgmt()
510 int32_t result = 0; in handleTransfer() local
526 result = NANOHUB_APP_NOT_LOADED; in handleTransfer()
538 result = NANOHUB_APP_NOT_LOADED; in handleTransfer()
543 if (result != 0) { in handleTransfer()
546 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleTransfer()
591 int32_t result = NANOHUB_APP_NOT_LOADED; in handleStopTransfer() local
593 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleStopTransfer()
690 int32_t result = NANOHUB_APP_NOT_LOADED; in handleFinish() local
693 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleFinish()
725 int32_t result = NANOHUB_APP_NOT_LOADED; in handleRun() local
726 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleRun()
736 int32_t result = 0; in handleInfo() local
742 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleInfo()
770 int32_t result = NANOHUB_APP_NOT_LOADED; in handleStopRun() local
772 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleStopRun()
813 int32_t result = NANOHUB_APP_NOT_LOADED; in handleEraseTransfer() local
815 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleEraseTransfer()
831 int32_t result = rsp.mStatus; in handleMgmt() local
833 if (result != 0) in handleMgmt()
834 result = -1; in handleMgmt()
872 sendToApp(mCmd, rsp.mTransactionId, &result, sizeof(result)); in handleMgmt()
931 void SystemComm::AppManager::dumpAppInfo(std::string &result) in dumpAppInfo() argument
940 result.append(buffer); in dumpAppInfo()
949 result.append(buffer); in dumpAppInfo()
957 result.append(buffer); in dumpAppInfo()
966 result.append(buffer); in dumpAppInfo()
972 result.append(buffer); in dumpAppInfo()
984 result.append(buffer); in dumpAppInfo()
1409 void SystemComm::doDumpAppInfo(std::string &result) in doDumpAppInfo() argument
1411 mAppManager.dumpAppInfo(result); in doDumpAppInfo()