Changeset 99775 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- May 12, 2023 12:21:58 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157370
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r98103 r99775 175 175 #endif 176 176 RTEXITCODE handleModifyVM(HandlerArg *a); 177 VMProcPriority_T nameToVMProcPriority(const char *pszName); 177 178 178 179 /* VBoxManageDebugVM.cpp */ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp
r99204 r99775 53 53 54 54 DECLARE_TRANSLATION_CONTEXT(ControlVM); 55 56 VMProcPriority_T nameToVMProcPriority(const char *pszName);57 55 58 56 /** -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r99773 r99775 370 370 * Translates a guest process wait result to a human readable string. 371 371 */ 372 const char *gctlProcessWaitResultToText(ProcessWaitResult_T enmWaitResult)372 static const char *gctlProcessWaitResultToText(ProcessWaitResult_T enmWaitResult) 373 373 { 374 374 switch (enmWaitResult) … … 455 455 * Translates a file system objec type to a string. 456 456 */ 457 const char *gctlFsObjTypeToName(FsObjType_T enmType)457 static const char *gctlFsObjTypeToName(FsObjType_T enmType) 458 458 { 459 459 switch (enmType) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r98103 r99775 400 400 } 401 401 402 const char *facilityStateToName(AdditionsFacilityStatus_T faStatus, bool fShort)402 static const char *facilityStateToName(AdditionsFacilityStatus_T faStatus, bool fShort) 403 403 { 404 404 switch (faStatus) … … 471 471 * This simply outputs the string adding necessary escaping and nothing else. 472 472 */ 473 void outputMachineReadableStringWorker(const char *psz)473 static void outputMachineReadableStringWorker(const char *psz) 474 474 { 475 475 for (;;) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r98298 r99775 932 932 }; 933 933 934 RTEXITCODE handleSetVMEncryption(HandlerArg *a, const char *pszFilenameOrUuid)934 static RTEXITCODE handleSetVMEncryption(HandlerArg *a, const char *pszFilenameOrUuid) 935 935 { 936 936 HRESULT hrc; … … 1065 1065 } 1066 1066 1067 RTEXITCODE handleCheckVMPassword(HandlerArg *a, const char *pszFilenameOrUuid)1067 static RTEXITCODE handleCheckVMPassword(HandlerArg *a, const char *pszFilenameOrUuid) 1068 1068 { 1069 1069 HRESULT hrc; … … 1108 1108 }; 1109 1109 1110 RTEXITCODE handleAddVMPassword(HandlerArg *a, const char *pszFilenameOrUuid)1110 static RTEXITCODE handleAddVMPassword(HandlerArg *a, const char *pszFilenameOrUuid) 1111 1111 { 1112 1112 HRESULT hrc; … … 1189 1189 } 1190 1190 1191 RTEXITCODE handleRemoveVMPassword(HandlerArg *a, const char *pszFilenameOrUuid)1191 static RTEXITCODE handleRemoveVMPassword(HandlerArg *a, const char *pszFilenameOrUuid) 1192 1192 { 1193 1193 HRESULT hrc; … … 1967 1967 } 1968 1968 1969 RTEXITCODE handleUnattendedDetect(HandlerArg *a)1969 static RTEXITCODE handleUnattendedDetect(HandlerArg *a) 1970 1970 { 1971 1971 HRESULT hrc; … … 2087 2087 } 2088 2088 2089 RTEXITCODE handleUnattendedInstall(HandlerArg *a)2089 static RTEXITCODE handleUnattendedInstall(HandlerArg *a) 2090 2090 { 2091 2091 HRESULT hrc; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageSnapshot.cpp
r98298 r99775 60 60 * @return 61 61 */ 62 bool FindAndPrintSnapshotUsingMedium(ComPtr<IMedium> &pMedium,63 ComPtr<ISnapshot> &pThisSnapshot,64 ComPtr<ISnapshot> &pCurrentSnapshot,65 uint32_t uMediumLevel,66 uint32_t uSnapshotLevel)62 static bool FindAndPrintSnapshotUsingMedium(ComPtr<IMedium> &pMedium, 63 ComPtr<ISnapshot> &pThisSnapshot, 64 ComPtr<ISnapshot> &pCurrentSnapshot, 65 uint32_t uMediumLevel, 66 uint32_t uSnapshotLevel) 67 67 { 68 68 HRESULT hrc; … … 138 138 * @param uLevel variant, the recursion level for output indentation. 139 139 */ 140 void DumpMediumWithChildren(ComPtr<IMedium> &pCurrentStateMedium,141 ComPtr<IMedium> &pMedium,142 ComPtr<ISnapshot> &pRootSnapshot,143 ComPtr<ISnapshot> &pCurrentSnapshot,144 uint32_t uLevel)140 static void DumpMediumWithChildren(ComPtr<IMedium> &pCurrentStateMedium, 141 ComPtr<IMedium> &pMedium, 142 ComPtr<ISnapshot> &pRootSnapshot, 143 ComPtr<ISnapshot> &pCurrentSnapshot, 144 uint32_t uLevel) 145 145 { 146 146 HRESULT hrc; … … 227 227 * @param pMachine Machine to dump snapshots for. 228 228 */ 229 void DumpSnapshot(ComPtr<IMachine> &pMachine)229 static void DumpSnapshot(ComPtr<IMachine> &pMachine) 230 230 { 231 231 HRESULT hrc;
Note:
See TracChangeset
for help on using the changeset viewer.