/vbox/src/VBox/HostServices/SharedOpenGL/dlm/ |
H A D | dlm_calllist.c | 18 struct instanceCallList *instance = (struct instanceCallList *)x; local 19 dispatchTable->CallList(instance->list); 23 struct instanceCallList *instance; local 24 instance = crCalloc(sizeof(struct instanceCallList)); 25 if (!instance) { 31 instance->list = list; 34 crdlm_add_to_list((DLMInstanceList *)instance, executeCallList); 40 struct instanceCallLists *instance = (struct instanceCallLists *)x; local 41 dispatchTable->CallLists(instance->n, instance 45 struct instanceCallLists *instance; local [all...] |
H A D | dlm_lists.c | 105 static void free_instance_list(DLMInstanceList * instance) argument 107 while (instance) 109 DLMInstanceList *nextInstance = instance->next; 110 crFree(instance); 111 instance = nextInstance;
|
H A D | dlm.c | 313 DLMInstanceList *instance; local 316 if (listInfo && (instance = listInfo->first)) { 317 while (instance) { 319 nextInstance = instance->next; 320 crFree(instance); 321 instance = nextInstance; 358 DLMInstanceList *instance = listInfo->first; local 359 while (instance) { 362 (*instance->execute)(instance, dispatchTabl 392 DLMInstanceList *instance = listInfo->stateFirst; local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/net/ |
H A D | UINetworkManager.h | 50 static UINetworkManager* instance() { return m_pInstance; } function in class:UINetworkManager 117 #define gNetworkManager UINetworkManager::instance()
|
H A D | UIUpdateManager.h | 38 /* Manager instance: */ 39 static UIUpdateManager* instance() { return m_pInstance; } function in class:UIUpdateManager 66 #define gUpdateManager UIUpdateManager::instance()
|
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/ |
H A D | UIConsoleEventHandler.h | 75 /** Static instance wrapper. */ 76 static UIConsoleEventHandler* instance() { return m_spInstance; } function in class:UIConsoleEventHandler 77 /** Static instance constructor. */ 79 /** Static instance destructor. */ 99 /** Holds the static instance. */ 105 /** Holds the main event listener instance. */ 109 #define gConsoleEvents UIConsoleEventHandler::instance()
|
H A D | UIDnDHandler.h | 39 static UIDnDHandler *instance(void) function in class:UIDnDHandler 92 /** Static pointer to singleton instance. */ 96 /** Gets the singleton instance of the drag'n drop UI helper class. */ 97 #define DnDHandler() UIDnDHandler::instance()
|
H A D | UIMachine.h | 36 * used as virtual machine (VM) singleton instance. */ 55 /** Static instance. */ 56 static UIMachine* instance() { return m_spInstance; } function in class:UIMachine 58 /** Returns session UI instance. */ 60 /** Returns machine-logic instance. */ 100 /** Static instance. */ 103 /** Holds the session UI instance. */ 116 #define gpMachine UIMachine::instance()
|
/vbox/src/VBox/Main/src-client/xpcom/ |
H A D | module.cpp | 62 * Singleton class factory that holds a reference to the created instance 73 instance = 0; 77 if (instance == 0) { 78 instance = new SessionClassFactory(); 79 if (instance) { 80 instance->AddRef(); // protect FinalConstruct() 81 rv = instance->FinalConstruct(); 83 instance->Release(); 85 instance->AddRef(); // self-reference 90 instance 102 static Session *instance; member in class:SessionClassFactory [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/converter/ |
H A D | UIConverter.h | 28 /* Singleton instance: */ 29 static UIConverter* instance() { return m_spInstance; } function in class:UIConverter 108 /* Static instance: */ 111 #define gpConverter UIConverter::instance()
|
/vbox/src/VBox/Frontends/VirtualBox/src/selector/ |
H A D | UIVirtualBoxEventHandler.cpp | 37 UIVirtualBoxEventHandler* UIVirtualBoxEventHandler::instance() function in class:UIVirtualBoxEventHandler 56 /* Create Main-event listener instance: */
|
/vbox/src/libs/xpcom18a4/python/src/ |
H A D | PyGInputStream.cpp | 55 PyG_nsIInputStream(PyObject *instance) : PyG_Base(instance, NS_GET_IID(nsIInputStream)) {;} argument 66 PyG_Base *MakePyG_nsIInputStream(PyObject *instance) argument 68 return new PyG_nsIInputStream(instance);
|
H A D | PyGModule.cpp | 61 PyG_nsIModule(PyObject *instance) : PyG_Base(instance, NS_GET_IID(nsIModule)) {;} argument 67 PyG_Base *MakePyG_nsIModule(PyObject *instance) argument 69 return new PyG_nsIModule(instance); 165 PyG_nsIComponentLoader(PyObject *instance) : PyG_Base(instance, NS_GET_IID(nsIComponentLoader)) {;} argument 171 PyG_Base *MakePyG_nsIComponentLoader(PyObject *instance) argument 173 return new PyG_nsIComponentLoader(instance);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Utility/ |
H A D | Path.c | 136 /** Process a wide character string representing a Mapping Path and extract the instance number. 138 The instance number is the sequence of decimal digits immediately to the left 143 If either of these are not true, an instance value of 0 is returned. 145 If Path is NULL, an instance value of 0 is returned. 160 int instance = 0; local 169 instance = (int)wcstol(temp+1, NULL, 10); 171 return instance; 249 /** Parse a path producing the target device, device instance, and file path. 365 and Instance is the instance number.
|
/vbox/src/VBox/HostDrivers/Support/solaris/ |
H A D | SUPDrv-solaris.c | 178 /** State info. for each driver instance. */ 317 * @param pDip The module structure instance. 332 int instance = ddi_get_instance(pDip); local 335 if (ddi_soft_state_zalloc(g_pVBoxDrvSolarisState, instance) != DDI_SUCCESS) 341 pState = ddi_get_soft_state(g_pVBoxDrvSolarisState, instance); 405 * @param pDip The module structure instance. 420 int instance = ddi_get_instance(pDip); 421 vbox_devstate_t *pState = ddi_get_soft_state(g_pVBoxDrvSolarisState, instance); 423 ddi_soft_state_free(g_pVBoxDrvSolarisState, instance); 454 * @param pDip The module structure instance 551 int instance; variable [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/globals/ |
H A D | UIModalWindowManager.cpp | 40 UIModalWindowManager* UIModalWindowManager::instance() { return m_spInstance; } function in class:UIModalWindowManager 45 /* Make sure instance is NOT created yet: */ 48 AssertMsgFailed(("UIModalWindowManager instance is already created!")); 52 /* Create instance: */ 59 /* Make sure instance is NOT destroyed yet: */ 62 AssertMsgFailed(("UIModalWindowManager instance is already destroyed!")); 66 /* Destroy instance: */ 72 /* Assign instance: */ 78 /* Unassign instance: */ 87 if (!VBoxGlobal::instance() || !vboxGloba [all...] |
H A D | UIPopupCenter.cpp | 39 UIPopupCenter* UIPopupCenter::instance() { return m_spInstance; } function in class:UIPopupCenter 44 /* Make sure instance is NOT created yet: */ 48 /* Create instance: */ 50 /* Prepare instance: */ 57 /* Make sure instance is NOT destroyed yet: */ 61 /* Cleanup instance: */ 63 /* Destroy instance: */ 69 /* Assign instance: */ 75 /* Unassign instance: */
|
H A D | UIShortcutPool.cpp | 74 UIShortcutPool* UIShortcutPool::instance() function in class:UIShortcutPool 81 /* Check that instance do NOT exists: */ 85 /* Create instance: */ 88 /* Prepare instance: */ 94 /* Check that instance exists: */ 98 /* Cleanup instance: */ 101 /* Delete instance: */ 210 /* Prepare instance: */ 217 /* Cleanup instance: */
|
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/ |
H A D | UIWindowMenuManager.cpp | 149 UIWindowMenuManager *UIWindowMenuManager::instance(QWidget *pParent /* = 0 */) function in class:UIWindowMenuManager
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | snmp_structs.h | 50 /* MIB object instance */ 65 u8_t instance; member in struct:obj_def 72 /* length of instance part of supplied object identifier */ 74 /* instance part of supplied object identifier */
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | snmp_structs.h | 56 /* MIB object instance */ 75 u8_t instance; member in struct:obj_def 82 /* length of instance part of supplied object identifier */ 84 /* instance part of supplied object identifier */
|
/vbox/src/VBox/Devices/Network/slirp/libalias/ |
H A D | alias_skinny.c | 169 u_int32_t instance; member in struct:RegisterMessage
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | runsuite.c | 518 test_log("Failed to parse valid instance line %ld\n", 531 test_log("Failed to validate valid instance line %ld\n", 535 test_log("Internal error validating instance line %ld\n", 543 test_log("Validation of instance line %ld leaked %d\n", 575 test_log("Failed to parse valid instance line %ld\n", 588 test_log("Failed to detect invalid instance line %ld\n", 592 test_log("Internal error validating instance line %ld\n", 600 test_log("Validation of instance line %ld leaked %d\n", 833 fprintf(stderr, "instance %s fails to parse\n", path); 848 test_log("valid instance 892 xmlNodePtr instance; local [all...] |
/vbox/src/VBox/HostDrivers/VBoxUSB/solaris/ |
H A D | VBoxUSBMon-solaris.c | 171 /** Global Device handle we only support one instance. */ 288 * @param pDip The module structure instance. 302 LogRel((DEVICE_NAME ":VBoxUSBMonSolarisAttach global instance already initialized.\n")); 307 int instance = ddi_get_instance(pDip); local 308 int rc = ddi_create_priv_minor_node(pDip, DEVICE_NAME, S_IFCHR, instance, DDI_PSEUDO, 0, 335 * @param pDip The module structure instance. 381 * @param pDip The module structure instance (do not use). 907 * @param Instance The client driver instance. 948 * @param Instance The client driver instance.
|
/vbox/src/VBox/Additions/common/VBoxGuest/ |
H A D | VBoxGuest-solaris.c | 164 /** Device handle (we support only one instance). */ 272 * @param pDip The module structure instance. 286 LogRel((DEVICE_NAME "::Attach: Only one instance supported.\n")); 290 int instance = ddi_get_instance(pDip); local 340 rc = ddi_create_minor_node(pDip, DEVICE_NAME, S_IFCHR, instance, DDI_PSEUDO, 0 /* fFlags */); 390 * @param pDip The module structure instance. 427 * @param pDip The module structure instance. 449 * @param pDip The module structure instance (do not use).
|