Searched defs:it (Results 51 - 75 of 83) sorted by relevance

1234

/vbox/src/VBox/HostServices/GuestControl/
H A Dservice.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
32 * the host does not know anything about connected clients it needs
33 * an indicator which it can refer to later. This context ID gets
39 * it gets a buffered host command to process it. This command then will be immediately
44 * If a client needs to inform the host that something happened, it can send a
47 * steps for this context. This context ID makes it possibl
1042 ClientStateMapIterConst it = mClientStateMap.find(u32ClientID); local
[all...]
/vbox/src/VBox/HostServices/GuestProperties/
H A Dservice.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
225 PropertyList::const_iterator it = mGuestNotifications.begin(); local
226 for (; it != mGuestNotifications.end()
227 && it->mTimestamp != u64Timestamp; ++it)
229 if (it == mGuestNotifications.end()) /* Not found */
230 it
958 PropertyList::reverse_iterator it = mGuestNotifications.rbegin(); local
1070 CallList::iterator it = mGuestWaiters.begin(); local
1147 CallList::iterator it = mGuestWaiters.begin(); local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/obsolete/component/
H A DnsFileSpecImpl.cpp39 #include "nsFileSpecImpl.h"// Always first, to ensure that it compiles alone.
91 nsFileSpecImpl* it = new nsFileSpecImpl(inSpec); local
92 if (!it)
94 return it->QueryInterface(NS_GET_IID(nsIFileSpec), (void **) result);
785 nsDirectoryIteratorImpl* it = new nsDirectoryIteratorImpl;
786 if (!it)
789 nsresult rv = it->QueryInterface(aIID, aIFileSpec);
792 delete it;
805 nsFileSpecImpl* it = new nsFileSpecImpl;
806 if (!it)
[all...]
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecImpl.cpp39 #include "nsFileSpecImpl.h"// Always first, to ensure that it compiles alone.
92 nsFileSpecImpl* it = new nsFileSpecImpl(inSpec); local
93 if (!it)
95 return it->QueryInterface(NS_GET_IID(nsIFileSpec), (void **) result);
807 nsDirectoryIteratorImpl* it = new nsDirectoryIteratorImpl;
808 if (!it)
811 nsresult rv = it->QueryInterface(aIID, aIFileSpec);
814 delete it;
827 nsFileSpecImpl* it = new nsFileSpecImpl;
828 if (!it)
[all...]
/vbox/src/VBox/Main/src-all/
H A DEventImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
24 * Another entity could subscribe to the event source for events it is interested in.
25 * If an event is waitable, it's possible to wait until all listeners
33 * For *passive* listeners, it's up to an event consumer to perform GetEvent() operation
347 for (VetoList::const_iterator it = m->mVetoList.begin(); it != m->mVetoList.end(); ++it,
1033 Listeners::iterator it = m->mListeners.find(aListener); local
1582 ProxyListenerMap::const_iterator it = mListenerProxies.find(aListener); local
1593 ProxyListenerMap::iterator it = mListenerProxies.find(aListener); local
[all...]
H A DExtPackManagerImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
60 * is why it has to be a separate application.
80 /** Whether it's usable or not. */
82 /** Why it is unusable. */
124 * This is used to determin whether to bother try reload it. */
165 /** File handle for the VBoxVMM libary which we slurp because ExtPacks depend on it. */
268 * Try open the extension pack and check that it i
2179 AssertReturn(cArgs < RT_ELEMENTS(apszArgs) - 1, E_UNEXPECTED); pszLastArg = va_arg(va, const char *); if (!pszLastArg) break; LogRel((�, pszLastArg)); apszArgs[cArgs++] = pszLastArg; }; va_end(va); LogRel((�)); apszArgs[cArgs] = NULL; RTPIPE hPipeR; RTHANDLE hStdErrPipe; hStdErrPipe.enmType = RTHANDLETYPE_PIPE; vrc = RTPipeCreate(&hPipeR, &hStdErrPipe.u.hPipe, RTPIPE_C_INHERIT_WRITE); AssertLogRelRCReturn(vrc, E_UNEXPECTED); HRESULT hrc; RTPROCESS hProcess; vrc = RTProcCreateEx(szExecName, apszArgs, RTENV_DEFAULT, 0 , NULL , NULL , &hStdErrPipe, NULL , NULL , &hProcess); if (RT_SUCCESS(vrc)) { vrc = RTPipeClose(hStdErrPipe.u.hPipe); hStdErrPipe.u.hPipe = NIL_RTPIPE; RTPROCSTATUS ProcStatus = { -42, RTPROCEXITREASON_ABEND }; size_t cbStdErrBuf = 0; size_t offStdErrBuf = 0; char *pszStdErrBuf = NULL; do { if (hPipeR != NIL_RTPIPE) { char achBuf[1024]; size_t cbRead; vrc = RTPipeReadBlocking(hPipeR, achBuf, sizeof(achBuf), &cbRead); if (RT_SUCCESS(vrc)) { size_t cbBufReq = offStdErrBuf + cbRead + 1; if ( cbBufReq > cbStdErrBuf && cbBufReq < _256K) { size_t cbNew = RT_ALIGN_Z(cbBufReq, 16); void *pvNew = RTMemRealloc(pszStdErrBuf, cbNew); if (pvNew) { pszStdErrBuf = (char *)pvNew; cbStdErrBuf = cbNew; } } if (cbBufReq <= cbStdErrBuf) { memcpy(&pszStdErrBuf[offStdErrBuf], achBuf, cbRead); offStdErrBuf = offStdErrBuf + cbRead; pszStdErrBuf[offStdErrBuf] = �; } } else { AssertLogRelMsg(vrc == VERR_BROKEN_PIPE, (�, vrc)); RTPipeClose(hPipeR); hPipeR = NIL_RTPIPE; } } if (hProcess != NIL_RTPROCESS) { vrc = RTProcWait(hProcess, hPipeR == NIL_RTPIPE ? RTPROCWAIT_FLAGS_BLOCK : RTPROCWAIT_FLAGS_NOBLOCK, &ProcStatus); if (RT_SUCCESS(vrc)) hProcess = NIL_RTPROCESS; else AssertLogRelMsgStmt(vrc == VERR_PROCESS_RUNNING, (�, vrc), hProcess = NIL_RTPROCESS); } } while ( hPipeR != NIL_RTPIPE || hProcess != NIL_RTPROCESS); LogRel((�, ProcStatus.enmReason, ProcStatus.iStatus, offStdErrBuf ? pszStdErrBuf : �)); if (offStdErrBuf > 0) { RTStrStripR(pszStdErrBuf); offStdErrBuf = strlen(pszStdErrBuf); } char *pszSuccessInd = findSuccessIndicator(pszStdErrBuf, offStdErrBuf); if (pszSuccessInd) { *pszSuccessInd = �; offStdErrBuf = pszSuccessInd - pszStdErrBuf; } else if ( ProcStatus.enmReason == RTPROCEXITREASON_NORMAL && ProcStatus.iStatus == 0) ProcStatus.iStatus = offStdErrBuf ? 667 : 666; if ( ProcStatus.enmReason == RTPROCEXITREASON_NORMAL && ProcStatus.iStatus == 0) hrc = S_OK; else if (ProcStatus.enmReason == RTPROCEXITREASON_NORMAL) { AssertMsg(ProcStatus.iStatus != 0, (�, pszStdErrBuf)); hrc = setError(E_FAIL, tr(�), ProcStatus.iStatus, offStdErrBuf ? pszStdErrBuf : �); } else if (ProcStatus.enmReason == RTPROCEXITREASON_SIGNAL) hrc = setError(E_UNEXPECTED, tr(�), ProcStatus.iStatus, offStdErrBuf ? pszStdErrBuf : �); else if (ProcStatus.enmReason == RTPROCEXITREASON_ABEND) hrc = setError(E_UNEXPECTED, tr(�), offStdErrBuf ? pszStdErrBuf : �); else hrc = setError(E_UNEXPECTED, tr(�), ProcStatus.enmReason, ProcStatus.iStatus, offStdErrBuf ? pszStdErrBuf : �); RTMemFree(pszStdErrBuf); } else hrc = setError(VBOX_E_IPRT_ERROR, tr(�), szExecName, vrc); RTPipeClose(hPipeR); RTPipeClose(hStdErrPipe.u.hPipe); return hrc; } ExtPack *ExtPackManager::i_findExtPack(const char *a_pszName) { size_t cchName = strlen(a_pszName); for (ExtPackList::iterator it = m->llInstalledExtPacks.begin(); it != m->llInstalledExtPacks.end(); it++) argument
[all...]
/vbox/src/VBox/Main/src-client/
H A DGuestSessionImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
258 /* Confirm a successful initialization when it's the case. */
325 ("mNumObjects=%RU32 when it should be 0\n", mData.mNumObjects));
518 for(SessionProcesses::iterator it = mData.mProcesses.begin();
519 it != mData.mProcesses.end();
520 ++it, ++i)
522 it
705 SessionDirectories::const_iterator it = mData.mDirectories.find(uDirID); local
1158 SessionFiles::const_iterator it = mData.mFiles.find(uFileID); local
1854 ProcessArguments::const_iterator it = procInfo.mArguments.begin(); local
1961 SessionProcesses::const_iterator it = mData.mProcesses.find(uProcessID); local
[all...]
H A DConsoleImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
143 * (e.g. passing it as a thread function argument). If #rc() returns a
599 /* Confirm a successful initialization when it's the case */
787 // we don't perform uninit() as it's possible that some pending event refers to this source
1242 /* Save the connected client id. From now on it will be necessary to disconnect this one. */
1541 * console data from it has already been loaded.
1608 for (SharedFolderMap::const_iterator it
2825 USBDeviceList::iterator it = mUSBDevices.begin(); local
2994 SharedFolderDataMap::const_iterator it; local
3951 USBStorageDeviceList::iterator it; local
5489 USBDeviceList::iterator it = mUSBDevices.begin(); local
7791 SharedFolderMap::const_iterator it = m_mapSharedFolders.find(strName); local
7877 SharedFolderDataMap::iterator it = oldFolders.find(strName); local
9340 RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin(); local
10206 Console::MediumAttachmentMap::const_iterator it = pThis->pmapMediumAttachments->find(devicePath); local
[all...]
/vbox/src/VBox/Main/src-server/
H A DApplianceImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
477 ovf::DiskImagesMap::const_iterator it; local
479 for (it = m->pReader->m_mapDisks.begin();
480 it != m->pReader->m_mapDisks.end();
481 ++it, ++i)
484 const ovf::DiskImage &d = it->second;
527 for (std::list< ComObjPtr<VirtualSystemDescription> >::iterator it
596 list<Utf8Str>::const_iterator it; local
1121 list< ComObjPtr<VirtualSystemDescription> >::const_iterator it; local
1465 list<VirtualSystemDescriptionEntry*>::const_iterator it; local
1599 std::vector<VirtualSystemDescriptionEntry>::iterator it = m->maDescriptions.begin(); local
1619 vector<VirtualSystemDescriptionEntry>::const_iterator it; local
[all...]
H A DApplianceImplExport.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
173 // considered two IDE controllers with two ports each by OVF, so export it as two
273 // it should be a SCSI controller
340 // 2) we need the size of the base image so we can give it to addEntry(), and later
369 /* Check whether the ID is already in our sequence, add it otherwise. */
440 // and it must be updated when that is changed!
629 list< ComObjPtr<VirtualSystemDescription> >::const_iterator it; local
879 list< ComObjPtr<VirtualSystemDescription> >::const_iterator it; local
2450 list< ComObjPtr<VirtualSystemDescription> >::const_iterator it; local
[all...]
H A DApplianceImplImport.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
81 // see if we can handle this file; for now we insist it has an ovf/ova extension
130 tr("Cannot interpret appliance without reading it first (call read() before interpret())"));
141 list<ovf::VirtualSystem>::const_iterator it; local
143 for (it = m->pReader->m_llVirtualSystems.begin();
144 it != m->pReader->m_llVirtualSystems.end();
145 ++it)
1855 list< ComObjPtr<VirtualSystemDescription> >::const_iterator it; local
3508 settings::USBControllerList::iterator it; local
3989 list<ovf::VirtualSystem>::const_iterator it; local
4117 std::map<Utf8Str , Utf8Str>::iterator it = local
[all...]
H A DHostImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
435 for (std::set<Utf8Str>::const_iterator it = aConfiguredNames.begin();
436 it != aConfiguredNames.end();
437 ++it)
445 it->c_str());
447 LogRel(("failed to create %s, error (0x%x)\n", it->c_str(), r));
460 * Called either from FinalRelease() or by the parent when it get
1427 USBDeviceFilterList::iterator it = m->llUSBDeviceFilters.begin(); local
[all...]
H A DSnapshotImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
139 /* Confirm a successful initialization when it's the case */
147 * Called either from FinalRelease(), by the parent when it gets destroyed,
148 * or by a third party when it decides this object is no more valid.
165 SnapshotsList::iterator it; local
166 for (it = m->llChildren.begin();
167 it !
[all...]
H A DMediumImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
138 * not quite ideal, but at least it is subject to the lock validator,
231 * binary operations you can use it either on the source or target). */
786 /* pTask is no longer needed, delete it. */
812 /* update the progress object, capping it at 99% as the final percent
957 * but it's not wasting much time or space so it'
2349 settings::StringsMap::const_iterator it = m->mapProperties.find(aName); local
2379 settings::StringsMap::iterator it = m->mapProperties.find(aName); local
2460 settings::StringsMap::iterator it = m->mapProperties.find(strName); local
3230 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore"); local
3304 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore"); local
3855 BackRefList::iterator it = local
5927 settings::StringsMap::const_iterator it = pBase->m->mapProperties.find("CRYPT/KeyId"); local
7014 settings::StringsMap::const_iterator it = that->m->mapProperties.find(Utf8Str(pszName)); local
7038 settings::StringsMap::const_iterator it = that->m->mapProperties.find(Utf8Str(pszName)); local
9300 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore"); local
9307 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore"); local
9402 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore"); local
[all...]
H A DVirtualBoxImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
118 // static leaked (todo: find better place to free it.)
154 * is bound to the lifetime of the VirtualBox instance, so it's safe.
258 // and contains ALL hard disks (base and differencing); it is protected by
403 // only if the main settings file does not exist, create it,
421 /* create the host object early, machines will need it */
431 * might need it
661 settings::MediaList::const_iterator it; local
1957 settings::StringsMap::const_iterator it = m->pMainConfigFile->mapExtraDataItems.find(aKey); local
1989 settings::StringsMap::const_iterator it = m->pMainConfigFile->mapExtraDataItems.find(strKey); local
3322 HardDiskMap::const_iterator it = m->mapHardDisks.find(id); local
[all...]
H A DMachineImpl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
373 /* Confirm a successful initialization when it's the case */
485 /* Confirm a successful initialization when it's the case */
561 // override VM name as well, it may be different
575 /* Confirm a successful initialization when it's the case */
689 * This method is separated from #init() in order to make it possible to
761 * failure, we mark it a
4898 settings::StringsMap::const_iterator it = mData->pMachineConfigFile->mapExtraDataItems.find(aKey); local
5294 StringsList::const_iterator it = task.m_llFilesToDelete.begin(); local
5588 HWData::GuestPropertyMap::const_iterator it = mHWData->mGuestProperties.find(aName); local
5855 HWData::GuestPropertyMap::const_iterator it = mHWData->mGuestProperties.begin(); local
8074 settings::StringsMap::const_iterator it = mData->pMachineConfigFile->mapExtraDataItems.find(strKey); local
8871 settings::BootOrderMap::const_iterator it = data.mapBootOrder.find(i); local
11592 StorageControllerList::const_iterator it = mStorageControllers->begin(); local
11612 StorageControllerList::const_iterator it = mStorageControllers->begin(); local
11626 USBControllerList::const_iterator it = mUSBControllers->begin(); local
11646 USBControllerList::const_iterator it = mUSBControllers->begin(); local
11845 StorageControllerList::const_iterator it = mStorageControllers->begin(); local
11897 StorageControllerList::const_iterator it = mStorageControllers->begin(); local
11916 USBControllerList::const_iterator it = mUSBControllers->begin(); local
11968 USBControllerList::const_iterator it = mUSBControllers->begin(); local
12566 Data::Session::RemoteControlList::iterator it = local
13307 Data::Session::RemoteControlList::iterator it = local
13424 HWData::GuestPropertyMap::iterator it = mHWData->mGuestProperties.find(aName); local
14494 settings::GuestPropertiesList::iterator it = llGuestProperties.begin(); local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c2974 unsigned int it; local
2976 for (it = 0; it < N_LOOP; it++)
2977 if (ar9300_eep_templates[it]->templateVersion == id)
2978 return ar9300_eep_templates[it];
3171 int it, checksum = 0; local
3173 for (it = 0; it < dsize; it
3187 int it; local
3217 ar9300_compress_decision(struct ath_hw *ah, int it, int code, int reference, u8 *mptr, u8 *word, int length, int mdata_size) argument
3314 int it; local
[all...]
/vbox/src/VBox/Main/webservice/
H A Dvboxweb.cpp12 * you can redistribute it and/or modify it under the terms of the GNU
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
58 // gSOAP headers (must come after vbox includes because it checks for conflicting defs)
339 * Constructor. Creates the new thread and makes it call process() for processing the queue.
469 // one of the threads (possibly the one just created) can pick it up
483 * by one, and the caller MUST call done() when it's done processing.
640 WebsessionsMapIterator it = g_mapWebsessions.begin(), local
642 while (it !
1287 WebsessionsMapIterator it = g_mapWebsessions.begin(), local
1625 ManagedObjectsIteratorById it, local
1775 ManagedObjectsIteratorByPtr it = _pp->_mapManagedObjectsByPtr.find(ulp); local
1806 WebsessionsMapIterator it = g_mapWebsessions.find(websessId); local
1992 WebsessionsMapIterator it = g_mapWebsessions.find(websessId); local
[all...]
/vbox/src/VBox/NetworkServices/DHCP/
H A DConfig.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
103 for (std::vector<BaseConfigEntity *>::iterator it = m_children.begin();
104 it != m_children.end();
105 ++it)
107 iMatch = (*it)->match(client, &matching);
263 for(MapLease2Ip4AddressConstIterator it = m->m_allocations.begin();
264 it !
291 VecClientIterator it; local
498 MapLease2Ip4AddressIterator it = m->m_allocations.find(l); local
517 MapLease2Ip4AddressIterator it; local
1212 DhcpOptionMap::const_iterator it = OptMap.find((int)u8Req); local
[all...]
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
68 /* Check the parser version. The docs say it will kill the app if
69 * there is a serious version mismatch, but I couldn't find it in the
70 * source code (it only prints the error/warning message to the console) so
71 * let's leave it as is for informational purposes. */
77 /* Save the default entity resolver before someone has replaced it */
1498 ElementNodesList::const_iterator it; member in struct:xml::NodesLoop::Data
[all...]
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileUnix.cpp251 // try lstat it may be a symlink
324 * component again, and it's easier to condition the logic here than
342 * automounter-controlled dir, etc. can affect it (see bug 125489
424 * fancy like setgid or sticky bits, do it by hand.
533 nsACString::const_iterator it = end; local
536 while (--it != stop) {
537 if (*it == '/') {
538 begin = ++it;
781 // open it successfully for writing.
1403 // which implies that it ha
[all...]
/vbox/src/VBox/Main/include/
H A DPerformance.h11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
127 for (ProcessList::const_iterator it = mProcesses.begin(); it != mProcesses.end(); it++)
128 processes.push_back(it->first);
140 ProcessList::iterator it; local
141 for (it
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageGuestCtrl.cpp11 * you can redistribute it and/or modify it under the terms of the GNU
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
447 * This can be executed on any thread in the process, on Windows it may even be
676 * because it contains more accurate info about what went wrong. */
772 * That is, checks whether it's up and running, if it can be locked (shared
773 * only) and returns a valid IGuest pointer on success. Also, it does some
801 /* Assume it'
2727 DESTDIRMAPITER it = mapDirs.begin(); local
2790 DESTDIRMAPITER it = mapDirs.begin(); local
2873 DESTDIRMAPITER it = mapDirs.begin(); local
2969 std::vector< Utf8Str >::iterator it = vecSources.begin(); local
3187 DESTDIRMAPITER it = mapObjs.begin(); local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddirectx.c11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
16 * This library is distributed in the hope that it will be useful,
28 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
313 /* Make it the current GL context. */
486 /* MacOS has various specialities in the extensions it advertises. Some have to be loaded from
516 * GL_UNSIGNED_INT_8_8_8_8_REV. This format triggers the bug, and it is what we use
796 * GL_WINE_normalized_texrect, which signals the code that it can use non power of two textures
799 * fglrx doesn't advertise GL_ARB_texture_non_power_of_two, but it advertises opengl 2.0 which
810 * it i
3233 int it; local
3492 int it=0; local
3537 int it; local
[all...]
/vbox/src/VBox/Main/xml/
H A DSettings.cpp33 * validate it with XML schema, and that will certainly fail.
39 * 2) In the settings reader method, try to read the setting; if it's there, great, if not,
52 * version (stored in m->sv) is high enough. That is, for VirtualBox 4.0, write it
61 * you can redistribute it and/or modify it under the terms of the GNU
63 * Foundation, in version 2 as it comes in the "COPYING" file of the
65 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
160 SettingsVersion_T svRead; // settings version that the original file had when it was read,
248 * pstrFilename is != NULL and reads the settings version from it.
349 // remember the settings version we read in case it get
2392 xml::ElementNodesList::iterator it; local
4308 StringsMap::const_iterator it = hw.vrdeSettings.mapProperties.find("TCP/Ports"); local
4344 StringsMap::const_iterator it = hw.vrdeSettings.mapProperties.find("VideoChannel/Enabled"); local
5727 StringsMap::const_iterator it = hardwareMachine.vrdeSettings.mapProperties.find("TCP/Ports"); local
5745 StringsMap::const_iterator it = hardwareMachine.vrdeSettings.mapProperties.find("TCP/Ports"); local
[all...]

Completed in 378 milliseconds

1234