Searched refs:fReadOnly (Results 1 - 25 of 32) sorted by relevance

12

/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceUtils.h26 int VBoxServiceReadHostProp(uint32_t u32ClientId, const char *pszPropName, bool fReadOnly, char **ppszValue, char **ppszFlags, uint64_t *puTimestamp);
H A DVBoxServiceUtils.cpp157 * @param fReadOnly Whether or not this property needs to be read only
167 int VBoxServiceReadHostProp(uint32_t u32ClientId, const char *pszPropName, bool fReadOnly, argument
178 if ( fReadOnly /* Do we except a guest read-only property */
/vbox/src/VBox/Runtime/generic/
H A Dfs-stubs-generic.cpp73 pProperties->fReadOnly = false;
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuihlpform.py50 def __init__(self, sId, sAction, dErrors = None, fReadOnly = False):
52 self._fReadOnly = fReadOnly;
289 fReadOnly = self._fReadOnly; ## @todo add this as a parameter.
290 if fReadOnly:
374 fReadOnly = self._fReadOnly; ## @todo argument?
375 sReadOnlyAttr = ' readonly class="tmform-input-readonly"' if fReadOnly else '';
385 if not fReadOnly:
515 if not fReadOnly:
541 if not fReadOnly:
587 fReadOnly
[all...]
H A Dwuiadminschedgroup.py84 fReadOnly = self._sMode == WuiFormContentBase.ksMode_Show);
H A Dwuiadmintestgroup.py74 fReadOnly = self._sMode == WuiFormContentBase.ksMode_Show);
H A Dwuicontentbase.py489 fReadOnly = self._sMode == self.ksMode_Show);
/vbox/src/VBox/Devices/Storage/
H A DDrvRawImage.cpp51 bool fReadOnly; member in struct:DRVRAWIMAGE
202 return pThis->fReadOnly;
302 pThis->fReadOnly = false;
311 pThis->fReadOnly = true;
H A DDrvHostBase.h49 bool fReadOnly; member in struct:DRVHOSTBASE
H A DDrvHostFloppy.cpp127 pThis->fReadOnly = !(DrvStat.flags & FD_DISK_WRITABLE);
H A DDrvHostBase.cpp225 if (!pThis->fReadOnly)
287 return pThis->fReadOnly;
816 static int drvHostBaseOpen(PDRVHOSTBASE pThis, PRTFILE pFileDevice, bool fReadOnly) argument
1063 uint32_t fFlags = (fReadOnly ? RTFILE_O_READ : RTFILE_O_READWRITE) | RTFILE_O_OPEN | RTFILE_O_DENY_NONE;
1081 static int drvHostBaseOpen(PDRVHOSTBASE pThis, PRTFILE pFileBlockDevice, PRTFILE pFileRawDevice, bool fReadOnly) argument
1083 unsigned fFlags = (fReadOnly ? RTFILE_O_READ : RTFILE_O_READWRITE)
1151 pThis->fReadOnly = true;
1154 pThis->fReadOnly = pThis->fReadOnlyConfig;
H A DDrvVD.cpp2494 bool fReadOnly; /**< True if the media is read-only. */ local
2627 rc = CFGMR3QueryBoolDef(pCurNode, "ReadOnly", &fReadOnly, false);
2650 if (fReadOnly && pThis->fTempReadOnly)
2679 if (fReadOnly && pThis->fMergePending)
2722 if (fReadOnly && fDiscard)
3051 if (fReadOnly || pThis->fTempReadOnly || iLevel != 0)
3097 && !fReadOnly
/vbox/src/VBox/Runtime/testcase/
H A DtstRTFsQueries.cpp97 Props.fReadOnly ? "readonly" : "readwrite",
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFAddr.cpp368 * @param fReadOnly Whether returning a read-only page is fine or not.
371 static DECLCALLBACK(int) dbgfR3AddrToVolatileR3PtrOnVCpu(PUVM pUVM, VMCPUID idCpu, PDBGFADDRESS pAddress, bool fReadOnly, argument
402 if (fReadOnly)
410 if (fReadOnly)
444 * @param fReadOnly Whether returning a read-only page is fine or not.
449 VMMR3DECL(int) DBGFR3AddrToVolatileR3Ptr(PUVM pUVM, VMCPUID idCpu, PDBGFADDRESS pAddress, bool fReadOnly, void **ppvR3Ptr) argument
465 pUVM, idCpu, pAddress, fReadOnly, ppvR3Ptr);
/vbox/src/VBox/Runtime/r3/posix/
H A Dfs-posix.cpp158 pProperties->fReadOnly = !!(StatVFS.f_flag & ST_RDONLY);
167 LogFlow(("RTFsQueryProperties(%p:{%s}, %p:{.cbMaxComponent=%u, .fReadOnly=%RTbool}): returns %Rrc\n",
168 pszFsPath, pszFsPath, pProperties, pProperties->cbMaxComponent, pProperties->fReadOnly, rc));
/vbox/include/VBox/
H A Dshflsvc.h686 bool fReadOnly; member in struct:SHFLFSPROPERTIES
721 pDst->fReadOnly = pSrc->fReadOnly;
/vbox/include/iprt/
H A Dfs.h563 bool fReadOnly; member in struct:RTFSPROPERTIES
/vbox/src/VBox/Runtime/r3/nt/
H A Dfs-nt.cpp206 pProperties->fReadOnly = !!(u.FsAttrInfo.FileSystemAttributes & FILE_READ_ONLY_VOLUME);
/vbox/src/VBox/Runtime/r3/win/
H A Dfs-win.cpp319 pProperties->fReadOnly = !!(dwFlags & FILE_READ_ONLY_VOLUME);
/vbox/src/VBox/Additions/common/pam/
H A Dpam_vbox.cpp388 * @param fReadOnly Indicates whether this key needs to be
395 const char *pszKey, bool fReadOnly,
452 if ( fReadOnly
394 pam_vbox_read_prop(pam_handle_t *hPAM, uint32_t uClientID, const char *pszKey, bool fReadOnly, char *pszValue, size_t cbValue) argument
/vbox/src/VBox/Debugger/testcase/
H A DtstDBGCStubs.cpp279 VMMR3DECL(int) DBGFR3AddrToVolatileR3Ptr(PUVM pUVM, VMCPUID idCpu, PDBGFADDRESS pAddress, bool fReadOnly, void **ppvR3Ptr) argument
/vbox/src/VBox/Additions/linux/lightdm-greeter/
H A Dvbox-greeter.cpp191 * @param fReadOnly Indicates whether this key needs to be
200 const char *pszKey, bool fReadOnly,
256 if ( fReadOnly
199 vbox_read_prop(uint32_t uClientID, const char *pszKey, bool fReadOnly, char *pszValue, size_t cbValue, uint64_t *puTimestamp) argument
/vbox/src/VBox/Additions/haiku/SharedFolders/
H A Dvboxsf.c489 if (volume_info.fsProperties.fReadOnly)
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_prov.c186 fsinfo->readonly = info.fsProperties.fReadOnly;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dimagehlp.h238 BOOLEAN fReadOnly; member in struct:_LOADED_IMAGE

Completed in 214 milliseconds

12