Searched refs:task (Results 1 - 24 of 24) sorted by relevance

/vbox/src/VBox/ValidationKit/testboxscript/
H A Dtestboxscript.py61 self.task = None
67 if self.task is not None:
68 print 'Wait for child task...'
69 self.task.terminate()
70 self.task.wait()
72 self.task = None;
109 self.task = subprocess.Popen(asArgs, shell=False);
110 rcExit = self.task.wait();
111 self.task = None;
/vbox/src/VBox/Main/src-server/
H A DSnapshotImpl.cpp1302 // SessionMachine task records
1324 /** Take snapshot task */
1362 /** Restore snapshot task */
1379 /** Delete snapshot task */
1480 /* create and start the task on a separate thread (note that it will not
1518 * @param task
1521 void SessionMachine::i_takeSnapshotHandler(TakeSnapshotTask &task) argument
1544 task.m_pProgress->i_notifyComplete(rc);
1561 AssertStmt(task.m_machineStateBackup != mData->mMachineState, throw E_FAIL);
1562 AssertStmt(task
1833 i_finishTakingSnapshot(TakeSnapshotTask &task, AutoWriteLock &alock, bool aSuccess) argument
2028 i_restoreSnapshotHandler(RestoreSnapshotTask &task) argument
2603 i_deleteSnapshotHandler(DeleteSnapshotTask &task) argument
[all...]
H A DVFSExplorerImpl.cpp177 /* task data */
196 std::auto_ptr<TaskVFSExplorer> task(static_cast<TaskVFSExplorer*>(pvUser));
197 AssertReturn(task.get(), VERR_GENERAL_FAILURE);
199 VFSExplorer *pVFSExplorer = task->pVFSExplorer;
206 switch(task->taskType)
211 rc = pVFSExplorer->i_updateFS(task.get());
214 rc = pVFSExplorer->i_updateS3(task.get());
223 rc = pVFSExplorer->i_deleteFS(task.get());
226 rc = pVFSExplorer->i_deleteS3(task.get());
233 AssertMsgFailed(("Invalid task typ
[all...]
H A DMediumImpl.cpp201 * task thread function will delete them when the task is complete.
275 /* Must have a strong VirtualBox reference during a task otherwise the
276 * reference count might drop to 0 while a task is still running. This
779 * destroy the task before we send out the completion notification.
828 * Implementation code for the "create base" task.
836 * Implementation code for the "create diff" task.
844 * Implementation code for the "clone" task.
852 * Implementation code for the "compact" task.
860 * Implementation code for the "resize" task
7355 i_taskCreateBaseHandler(Medium::CreateBaseTask &task) argument
7498 i_taskCreateDiffHandler(Medium::CreateDiffTask &task) argument
7718 i_taskMergeHandler(Medium::MergeTask &task) argument
8029 i_taskCloneHandler(Medium::CloneTask &task) argument
8334 i_taskDeleteHandler(Medium::DeleteTask &task) argument
8400 i_taskResetHandler(Medium::ResetTask &task) argument
8544 i_taskCompactHandler(Medium::CompactTask &task) argument
8641 i_taskResizeHandler(Medium::ResizeTask &task) argument
8753 i_taskExportHandler(Medium::ExportTask &task) argument
8947 i_taskImportHandler(Medium::ImportTask &task) argument
9243 i_taskEncryptHandler(Medium::EncryptTask &task) argument
[all...]
H A DApplianceImpl.cpp1033 * @param pProgressAsync Progress object of asynchronous task running in background.
1171 * Starts the worker thread for the task.
1191 return Appliance::i_setErrorStatic(E_FAIL, Utf8StrFmt("Could not create OVF task thread (%Rrc)\n", vrc));
1206 std::auto_ptr<TaskOVF> task(static_cast<TaskOVF*>(pvUser));
1207 AssertReturn(task.get(), VERR_GENERAL_FAILURE);
1209 Appliance *pAppliance = task->pAppliance;
1212 LogFlowFunc(("Appliance %p taskType=%d\n", pAppliance, task->taskType));
1216 switch (task->taskType)
1219 if (task->locInfo.storageType == VFSType_File)
1220 taskrc = pAppliance->i_readFS(task
[all...]
H A DApplianceImplExport.cpp739 /* Initialize our worker task */
740 std::auto_ptr<TaskOVF> task(new TaskOVF(this, TaskOVF::Write, aLocInfo, aProgress));
742 task->enFormat = aFormat;
744 rc = task->startThread();
748 task.release();
2418 /* Create a temporary file based location info for the sub task */
H A DApplianceImplImport.cpp832 * Implementation for reading an OVF (via task).
875 /* Initialize our worker task */
876 std::auto_ptr<TaskOVF> task(new TaskOVF(this, TaskOVF::Read, aLocInfo, aProgress));
878 rc = task->startThread();
882 task.release();
1370 /* Initialize our worker task */
1371 std::auto_ptr<TaskOVF> task(new TaskOVF(this, TaskOVF::Import, locInfo, progress));
1373 rc = task->startThread();
1377 task.release();
1400 * @param pTask The OVF task dat
[all...]
H A DMachineImpl.cpp5210 * @param task
5213 void Machine::i_deleteConfigHandler(DeleteConfigTask &task) argument
5225 task.m_pProgress->i_notifyComplete(rc);
5250 for (size_t i = 0; i < task.m_llMediums.size(); ++i)
5252 ComObjPtr<Medium> pMedium = (Medium*)(IMedium*)(task.m_llMediums.at(i));
5257 rc = task.m_pProgress->SetNextOperation(BstrFmt(tr("Deleting '%s'"), strLocation.c_str()).raw(), 1);
5266 rc = task.m_pProgress->WaitForAsyncProgressCompletion(pProgress2);
5290 // delete the files pushed on the task list by Machine::Delete()
5294 StringsList::const_iterator it = task.m_llFilesToDelete.begin();
5295 while (it != task
12776 i_saveStateHandler(SaveStateTask &task) argument
[all...]
/vbox/src/VBox/Main/include/
H A DMediumImpl.h381 HRESULT i_taskCreateBaseHandler(Medium::CreateBaseTask &task);
382 HRESULT i_taskCreateDiffHandler(Medium::CreateDiffTask &task);
383 HRESULT i_taskMergeHandler(Medium::MergeTask &task);
384 HRESULT i_taskCloneHandler(Medium::CloneTask &task);
385 HRESULT i_taskDeleteHandler(Medium::DeleteTask &task);
386 HRESULT i_taskResetHandler(Medium::ResetTask &task);
387 HRESULT i_taskCompactHandler(Medium::CompactTask &task);
388 HRESULT i_taskResizeHandler(Medium::ResizeTask &task);
389 HRESULT i_taskExportHandler(Medium::ExportTask &task);
390 HRESULT i_taskImportHandler(Medium::ImportTask &task);
[all...]
H A DMachineImpl.h831 void i_deleteConfigHandler(DeleteConfigTask &task);
/vbox/src/VBox/Main/src-client/
H A DGuestSessionImplTasks.cpp62 // session task classes
211 std::auto_ptr<SessionTaskOpen> task(static_cast<SessionTaskOpen*>(pvUser));
212 AssertReturn(task.get(), VERR_GENERAL_FAILURE);
214 LogFlowFunc(("pTask=%p\n", task.get()));
215 return task->Run(NULL /* guestRc */);
571 std::auto_ptr<SessionTaskCopyTo> task(static_cast<SessionTaskCopyTo*>(pvUser));
572 AssertReturn(task.get(), VERR_GENERAL_FAILURE);
574 LogFlowFunc(("pTask=%p\n", task.get()));
575 return task->Run();
843 std::auto_ptr<SessionTaskCopyFrom> task(static_cas
[all...]
H A DConsoleImpl.cpp140 * Once created, the task structure adds itself as a Console caller. This means:
144 * failure, the Console object may not be used by the task (see
148 * be accidentally uninitialized). Forgetting to delete the created task
152 * If \a aUsesVMPtr parameter is true, the task structure will also add itself
2181 /* setup task object and thread to carry out the operation asynchronously */
2182 std::auto_ptr<VMPowerDownTask> task(new VMPowerDownTask(this, pProgress));
2183 AssertBreakStmt(task->isOk(), rc = E_FAIL);
2186 (void *) task.get(), 0,
2195 /* task is now owned by powerDownThread(), so release it */
2196 task
[all...]
H A DGuestSessionImpl.cpp52 * asynchronous session task.
2103 /* Initialize our worker task. */
2104 std::auto_ptr<GuestSessionTask> task(pTask);
2106 int rc = task->RunAsync(strTaskDesc, pProgress);
2111 task.release();
2452 tr("Starting task for copying file \"%s\" from guest to \"%s\" on the host failed: %Rrc"), rc);
2503 tr("Starting task for copying file \"%s\" from host to \"%s\" on the guest failed: %Rrc"), rc);
/vbox/src/VBox/HostDrivers/VBoxNetFlt/
H A DVBoxNetFltInternal.h236 /** Input task */
237 struct task tskin;
238 /** Output task */
239 struct task tskout;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/Ia32/
H A DAsmFuncs.S99 ## eflags from interrupted task
100 ## CS from interrupted task
101 ## EIP from interrupted task
H A DAsmFuncs.asm193 ;; eflags from interrupted task
194 ;; CS from interrupted task
195 ;; EIP from interrupted task
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/X64/
H A DAsmFuncs.asm191 ;; SS from interrupted task
192 ;; RSP from interrupted task
193 ;; rflags from interrupted task
194 ;; CS from interrupted task
195 ;; RIP from interrupted task
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dwlan_compat.h405 #define init_waitqueue_entry(a, b) { (a)->task = current; }
/vbox/src/VBox/HostDrivers/VBoxUSB/darwin/
H A DVBoxUSB.cpp54 #include <kern/task.h>
149 /** The client task. */
566 Log(("VBoxUSBClient::initWithTask([%p], %p, %p, %#x) -> false (no task)\n", this, OwningTask, pvSecurityId, u32Type));
903 * Checks whether the specified task is a VBoxUSB client task or not.
909 * @param ClientTask The task.
1335 * calling task/process context when the VM tries to open the device is the VM process.
1357 Log(("VBoxUSBDevice::message([%p],%p {%s}, %p) - pid=%d task=%p: client process, closing.\n",
1368 Log(("VBoxUSBDevice::message([%p],%p {%s}, %p) - pid=%d task=%p: not client process!\n",
1786 Log(("VBoxUSBInterface::message([%p],%p {%s}, %p) - pid=%d task
[all...]
/vbox/src/VBox/Devices/PC/BIOS/
H A Dorgs.asm540 mov ds:[48Eh], al ; HD task complete flag
1668 ;; record completion in BIOS task complete flag
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_module.c33 #include <sys/task.h>
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dirix.c57 #include <task.h>
/vbox/src/VBox/VMM/VMMRC/
H A DTRPMRCHandlersA.asm1138 ; This is a special trap handler executes in separate task with own TSS, with
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 225 milliseconds