Searched refs:fWritable (Results 1 - 16 of 16) sorted by relevance

/vbox/src/VBox/HostServices/SharedFolders/
H A Dmappings.h31 bool fWritable; /**< folder is writable for the guest */ member in struct:__anon16446
45 bool fWritable, bool fAutoMount, bool fCreateSymlinks, bool fMissing);
50 int vbsfMappingsQueryWritable(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fWritable);
H A Dmappings.cpp194 bool fWritable, bool fAutoMount, bool fSymlinksCreate, bool fMissing)
236 FolderMapping[i].fWritable = fWritable;
456 int vbsfMappingsQueryWritable(PSHFLCLIENTDATA pClient, SHFLROOT root, bool *fWritable) argument
467 *fWritable = pFolderMapping->fWritable;
193 vbsfMappingsAdd(PSHFLSTRING pFolderName, PSHFLSTRING pMapName, bool fWritable, bool fAutoMount, bool fSymlinksCreate, bool fMissing) argument
H A Dvbsf.cpp1399 bool fWritable; local
1400 rc = vbsfMappingsQueryWritable(pClient, root, &fWritable);
1401 if (RT_FAILURE(rc) || !fWritable)
1544 bool fWritable; local
1545 rc = vbsfMappingsQueryWritable(pClient, root, &fWritable);
1546 if (RT_FAILURE(rc) || !fWritable)
2136 bool fWritable; local
2137 int rc = vbsfMappingsQueryWritable(pClient, root, &fWritable);
2138 if (RT_FAILURE(rc) || !fWritable)
2282 bool fWritable; local
2347 bool fWritable; local
[all...]
/vbox/src/VBox/Main/src-all/
H A DSharedFolderImpl.cpp39 : fWritable(false),
45 bool fWritable; member in struct:SharedFolder::Data
145 aThat->m->fWritable,
295 m->fWritable = aWritable;
376 *aWritable = !!m->fWritable;
412 return m->fWritable;
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsSFDetails.cpp92 void UIMachineSettingsSFDetails::setWriteable(bool fWritable) argument
94 mCbReadonly->setChecked(!fWritable);
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageMisc.cpp937 bool fWritable = true; local
961 fWritable = false;
1002 fWritable, fAutoMount));
1017 fWritable, fAutoMount));
/vbox/src/VBox/Devices/Bus/
H A DDevPciIch9.cpp1232 uint8_t fWritable;
1252 { 0x18, 1, 1, 2, "PRIMARY_BUS" }, // fWritable = ??
1253 { 0x19, 1, 1, 2, "SECONDARY_BUS" }, // fWritable = ??
1254 { 0x1a, 1, 1, 2, "SUBORDINATE_BUS" }, // fWritable = ??
1255 { 0x1b, 1, 1, 2, "SEC_LATENCY_TIMER" }, // fWritable = ??
1257 { 0x1c, 1, 1, 2, "IO_BASE" }, // fWritable = ??
1258 { 0x1d, 1, 1, 2, "IO_LIMIT" }, // fWritable = ??
1259 { 0x1e, 2, 1, 2, "SEC_STATUS" }, // fWritable = ??
1261 { 0x20, 2, 1, 2, "MEMORY_BASE" }, // fWritable = ??
1262 { 0x22, 2, 1, 2, "MEMORY_LIMIT" }, // fWritable
[all...]
H A DDevPCI.cpp1288 uint8_t fWritable; member in struct:PciField
1308 { 0x18, 1, 1, 2, "PRIMARY_BUS" }, // fWritable = ??
1309 { 0x19, 1, 1, 2, "SECONDARY_BUS" }, // fWritable = ??
1310 { 0x1a, 1, 1, 2, "SUBORDINATE_BUS" }, // fWritable = ??
1311 { 0x1b, 1, 1, 2, "SEC_LATENCY_TIMER" }, // fWritable = ??
1313 { 0x1c, 1, 1, 2, "IO_BASE" }, // fWritable = ??
1314 { 0x1d, 1, 1, 2, "IO_LIMIT" }, // fWritable = ??
1315 { 0x1e, 2, 1, 2, "SEC_STATUS" }, // fWritable = ??
1317 { 0x20, 2, 1, 2, "MEMORY_BASE" }, // fWritable = ??
1318 { 0x22, 2, 1, 2, "MEMORY_LIMIT" }, // fWritable
[all...]
/vbox/include/VBox/vmm/
H A Dpgm.h383 VMM_INT_DECL(int) PGMPhysIemGCPhys2Ptr(PVM pVM, PVMCPU pVCpu, RTGCPHYS GCPhys, bool fWritable, bool fByPassHandlers, void **ppv, PPGMPAGEMAPLOCK pLock);
384 VMM_INT_DECL(int) PGMPhysIemQueryAccess(PVM pVM, RTGCPHYS GCPhys, bool fWritable, bool fByPassHandlers);
533 VMMR3DECL(int) PGMR3PhysTlbGCPhys2Ptr(PVM pVM, RTGCPHYS GCPhys, bool fWritable, void **ppv);
/vbox/include/VBox/
H A Dsettings.h723 : fWritable(false)
731 bool fWritable; member in struct:settings::SharedFolder
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPhys.cpp4047 * @param fWritable Whether write access is required.
4055 VMM_INT_DECL(int) PGMPhysIemGCPhys2Ptr(PVM pVM, PVMCPU pVCpu, RTGCPHYS GCPhys, bool fWritable, bool fByPassHandlers, argument
4081 else if (PGM_PAGE_HAS_ACTIVE_HANDLERS(pPage) && fWritable)
4092 if (fWritable)
4126 if (fWritable)
4164 * @param fWritable Whether write access is required.
4170 VMM_INT_DECL(int) PGMPhysIemQueryAccess(PVM pVM, RTGCPHYS GCPhys, bool fWritable, bool fByPassHandlers) argument
4194 else if (PGM_PAGE_HAS_ACTIVE_HANDLERS(pPage) && fWritable)
/vbox/src/recompiler/
H A Dcpu-all.h243 void *remR3TlbGCPhys2Ptr(CPUState *env1, target_ulong physAddr, int fWritable);
H A DVBoxRecompiler.c1776 void *remR3TlbGCPhys2Ptr(CPUX86State *env1, target_ulong physAddr, int fWritable) argument
1787 rc = PGMR3PhysTlbGCPhys2Ptr(env1->pVM, physAddr, true /*fWritable*/, &pv);
/vbox/src/VBox/Main/xml/
H A DSettings.cpp1936 && (fWritable == g.fWritable)
3253 pelmFolder->getAttributeValue("writable", sf.fWritable);
4740 pelmThis->setAttribute("writable", sf.fWritable);
/vbox/src/VBox/VMM/VMMR3/
H A DPGMPhys.cpp4682 * @param fWritable Whether write access is required.
4686 VMMR3DECL(int) PGMR3PhysTlbGCPhys2Ptr(PVM pVM, RTGCPHYS GCPhys, bool fWritable, void **ppv)
4708 if (fWritable)
4727 if (fWritable)
/vbox/src/VBox/Main/src-server/
H A DMachineImpl.cpp9007 RT_BOOL(sf.fWritable),
10296 sf.fWritable = !!pSF->i_isWritable();

Completed in 200 milliseconds