/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/ |
H A D | nl_langinfo.c | 21 nl_langinfo(nl_item item) argument 25 switch (item) { 40 s = _CurrentTimeLocale->am_pm[(size_t)(item - AM_STR)]; 49 s = _CurrentTimeLocale->day[(size_t)(item - DAY_1)]; 58 s = _CurrentTimeLocale->abday[(size_t)(item - ABDAY_1)]; 72 s = _CurrentTimeLocale->mon[(size_t)(item - MON_1)]; 86 s = _CurrentTimeLocale->abmon[(size_t)(item - ABMON_1)];
|
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | zone.h | 22 struct item struct 27 LIST_ENTRY(item) list; 37 size_t size; /* item size */ 46 LIST_HEAD(RT_NOTHING, item) used_items; 47 LIST_HEAD(RT_NOTHING, item) free_items;
|
H A D | misc.c | 153 struct item *it; 184 AssertMsgFailed(("NAT: item initialization failed for zone %s\n", zone->name)); 210 it = &((struct item *)sub_area)[-1]; 221 memset(it, 0, sizeof(struct item)); 233 static void slirp_uma_free(void *item, int size, uint8_t flags) argument 235 struct item *it; 242 Assert(item); 243 it = &((struct item *)item)[-1]; 244 LogFlowFunc(("ENTER: item 401 uma_zfree(uma_zone_t zone, void *item) argument [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | menu.c | 89 * Add menu item 95 * @v is_default Item is the default item 96 * @ret item Menu item, or NULL on failure 104 struct menu_item *item; local 112 /* Allocate item */ 115 len = ( sizeof ( *item ) + label_len + text_len ); 116 item = zalloc ( len ); 117 if ( ! item ) 119 label_copy = ( ( void * ) ( item 144 struct menu_item *item; local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/ |
H A D | QIDialogButtonBox.cpp | 104 QLayoutItem *item = aLayout->itemAt(i); local 105 if (item->spacerItem())
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/ |
H A D | menu_cmd.c | 106 /** "item" options */ 118 /** "item" option list */ 130 /** "item" command descriptor */ 137 * The "item" command 146 struct menu_item *item; local 172 /* Add menu item */ 173 item = add_menu_item ( menu, label, ( text ? text : "" ), 175 if ( ! item ) { 231 struct menu_item *item; local 247 if ( ( rc = show_menu ( menu, opts.timeout, opts.select, &item ) ) ! [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/hci/tui/ |
H A D | menu_ui.c | 54 /** Currently selected item */ 56 /** First visible item */ 63 * Return a numbered menu item 67 * @ret item Menu item, or NULL 70 struct menu_item *item; local 72 list_for_each_entry ( item, &menu->items, list ) { 74 return item; 81 * Draw a numbered menu item 87 struct menu_item *item; local 184 struct menu_item *item; local 307 struct menu_item *item; local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/selector/ |
H A D | UIVMItem.cpp | 266 /* Should we show details for this item? */ 295 /* Should we show details for this item? */ 505 UIVMItem *UIVMItemMimeData::item() const function in class:UIVMItemMimeData
|
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/ |
H A D | UIGlobalSettingsExtension.cpp | 41 /* Extension package item: */ 46 /* Extension package item type: */ 49 /* Extension package item constructor: */ 243 /* If at least one item present: */ 386 /* Get current item: */ 440 UISettingsCacheGlobalExtensionItem item; local 441 item.m_strName = package.GetName(); 442 item.m_strDescription = package.GetDescription(); 443 item.m_strVersion = package.GetVersion(); 444 item [all...] |
H A D | UIGlobalSettingsInput.cpp | 170 foreach (const UIShortcutCacheItem &item, m_cache.m_shortcuts) 171 sequences.insert(item.key, item.currentSequence); 251 foreach (const UIShortcutCacheItem &item, shortcuts) argument 254 if ((m_type == UIActionPoolType_Selector && item.key.startsWith(GUI_Input_MachineShortcuts)) || 255 (m_type == UIActionPoolType_Runtime && item.key.startsWith(GUI_Input_SelectorShortcuts))) 257 /* Load shortcut cache item into model: */ 258 m_shortcuts << item; local 269 foreach (const UIShortcutCacheItem &item, m_shortcuts) argument 271 /* Search for corresponding cache item inde 534 foreach(const UIShortcutCacheItem &item, m_shortcuts) argument 541 m_filteredShortcuts << item; local [all...] |
/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/ |
H A D | layout.c | 75 const XklConfigItem *item, 81 full_name = make_layout_string (data, item->name); 83 layout = g_object_new (LIGHTDM_TYPE_LAYOUT, "name", full_name, "short-description", item->short_description, "description", item->description, NULL); 91 const XklConfigItem *item, 96 layout = g_object_new (LIGHTDM_TYPE_LAYOUT, "name", item->name, "short-description", item->short_description, "description", item->description, NULL); 99 xkl_config_registry_foreach_layout_variant (config, item->name, variant_cb, (gpointer) item 74 variant_cb(XklConfigRegistry *config, const XklConfigItem *item, gpointer data) argument 90 layout_cb(XklConfigRegistry *config, const XklConfigItem *item, gpointer data) argument 179 GList *item; local [all...] |
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/lock/src/module/ |
H A D | ipcLockModule.cpp | 94 ipcLockModule_FreeTable(void *pool, void *item) argument 96 free(item);
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/ds/ |
H A D | plhash.c | 76 DefaultFreeTable(void *pool, void *item) argument 82 PR_Free(item);
|
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | infcover.c | 59 struct mem_item *next; /* pointer to next item in list, or NULL */ 64 struct mem_item *first; /* pointer to first item in list, or NULL */ 74 struct mem_item *item; local 89 /* create a new item for the list */ 90 item = malloc(sizeof(struct mem_item)); 91 if (item == NULL) { 95 item->ptr = ptr; 96 item->size = len; 98 /* insert item at the beginning of the list */ 99 item 114 struct mem_item *item, *next; local 203 struct mem_item *item, *next; local [all...] |
/vbox/src/VBox/HostDrivers/VBoxNetFlt/freebsd/ |
H A D | VBoxNetFlt-freebsd.c | 308 static int ng_vboxnetflt_rcvmsg(node_p node, item_p item, hook_p lasthook) argument 314 NGI_GET_MSG(item, msg); 332 static int ng_vboxnetflt_rcvdata(hook_p hook, item_p item) argument 344 NGI_GET_M(item, m); 345 NG_FREE_ITEM(item);
|
/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/ |
H A D | UIGChooserItem.cpp | 59 /* Basic item setup: */ 66 /* Non-root item? */ 104 AssertMsg(pItem, ("Trying to cast invalid item type to UIGChooserItemGroup!")); 111 AssertMsg(pItem, ("Trying to cast invalid item type to UIGChooserItemMachine!")); 181 /* Root-item should notify chooser-view if minimum-width-hint was changed: */ 189 /* Root-item should notify chooser-view if minimum-height-hint was changed: */ 202 /* If item is not visible: */ 205 /* Get parrent item, assert if can't: */ 269 /* Make sure item is really dragged: */ 288 /* Allow drag tokens only for the same item typ 441 UIGChooserItem* UIGChooserItemMimeData::item() const function in class:UIGChooserItemMimeData [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/ |
H A D | UIMachineSettingsUSB.cpp | 113 /* Check if created item was already attached to this session: */ 584 /* If there is no chosen item but there is something to choose => choose it: */ 588 /* Update current item: */ 604 /* Select item if requested: */ 685 /* Get current USB filter item: */ 733 /* Get current USB filter item: */ 741 /* Update current item: */ 750 QTreeWidgetItem *item = mTwFilters->currentItem(); local 751 Assert (item); 753 int index = mTwFilters->indexOfTopLevelItem (item); 764 QTreeWidgetItem *item = mTwFilters->currentItem(); local [all...] |
H A D | UIMachineSettingsSF.cpp | 76 QTreeWidgetItem *item = QTreeWidgetItem::child (aIndex); local 77 return item && item->type() == SFTreeViewItemType ? static_cast <SFTreeViewItem*> (item) : 0; 164 /* Calculate item's size-hint */ 289 /* Prepare item fields: */ 295 /* Create new shared folders item: */ 298 /* Ensure current item fetched: */ 314 /* Get shared folder root item: */ 449 /* Appending a new listview item t 454 SFTreeViewItem *item = new SFTreeViewItem (root(isPermanent ? MachineType : ConsoleType), local 469 SFTreeViewItem *item = selectedItem && selectedItem->type() == SFTreeViewItem::SFTreeViewItemType ? local 595 SFTreeViewItem *item = subRoot->child (j) && local 647 SFTreeViewItem *item = static_cast <SFTreeViewItem*> (*it); local [all...] |
/vbox/src/VBox/Main/xml/ |
H A D | ovfreader.cpp | 528 throw OVFLogicError(N_("Error reading \"%s\": Invalid allocation unit \"%s\" specified with memory size item, line %d"), 712 throw OVFLogicError(N_("Error reading \"%s\": Unknown resource type %d in hardware item, line %d"), 758 throw OVFLogicError(N_("Error reading \"%s\": Disk item with instance ID %d specifies invalid parent %d, line %d"), 779 throw OVFLogicError(N_("Error reading \"%s\": Disk item with instance ID %d specifies invalid host resource \"%s\", line %d"), 827 void VirtualHardwareItem::fillItem(const xml::ElementNode *item) argument 829 xml::NodesLoop loopItemChildren(*item);// all child elements 853 if (item->getAttributeValue("required", pcszAttValue)) 917 void StorageItem::fillItem(const xml::ElementNode *item) argument 919 VirtualHardwareItem::fillItem(item); 921 xml::NodesLoop loopItemChildren(*item);// al 1029 fillItem(const xml::ElementNode *item) argument [all...] |
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | ewmhints.c | 216 unsigned long item; local 226 for (item = 0; item < nitems_return; item++) 228 if (return_words[item] == g_net_wm_state_maximized_vert_atom) 230 if (return_words[item] == g_net_wm_state_maximized_horz_atom) 232 if (return_words[item] == g_net_wm_state_hidden_atom) 561 unsigned long item; local 571 for (item = 0; item < nitems_retur [all...] |
/vbox/src/libs/xpcom18a4/xpcom/threads/ |
H A D | nsAutoLock.cpp | 83 _hash_free_table(void *pool, void *item) argument 85 operator delete(item);
|
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | streambuffer.jar | META-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/stream/ ... |
/vbox/src/VBox/Frontends/VirtualBox/src/settings/ |
H A D | VBoxSettingsSelector.cpp | 90 if (SelectorItem *item = findItem (aId)) 91 item->setText (aText); 97 if (SelectorItem *item = findItemByPage (aPage)) 98 text = item->text(); 105 if (SelectorItem *item = findItem (aId)) 106 page = item->page(); 113 foreach (SelectorItem *item, mItemList) 114 if (item->page()) 115 list << item->page(); 122 foreach (SelectorItem *item, mItemLis 230 SelectorItem *item = new SelectorItem (icon, "", aId, aLink, aPage, aParentId); local 247 QTreeWidgetItem *item = findItem (mTwSelector, idToString (aId), treeWidget_Id); local 260 QTreeWidgetItem *item = mTwSelector->currentItem(); local 269 QTreeWidgetItem *item = findItem (mTwSelector, aLink, treeWidget_Link); local 278 QTreeWidgetItem *item = findItem (mTwSelector, idToString (aId), treeWidget_Id); local 285 QTreeWidgetItem *item = findItem (mTwSelector, idToString (aId), treeWidget_Id); local 419 SelectorActionItem *item = new SelectorActionItem (icon, "", aId, aLink, aPage, aParentId, this); local 499 SelectorItem *item = VBoxSettingsSelector::findItemByLink (aLink); local 555 SelectorActionItem *item = findActionItem (aId); local 594 SelectorActionItem *item = findActionItemByAction (aAction); local 618 SelectorActionItem *item = findActionItemByTabWidget (qobject_cast<QTabWidget*> (sender()), aIndex); local 658 foreach(SelectorItem *item, mItemList) argument [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/ |
H A D | UIApplianceEditorWidget.cpp | 302 /* If the item is unchecked mark it with italic text. */ 314 /* If the item is unchecked mark it with gray text. */ 628 * are child's of this item. */ 776 /* New hardware item as child of the controller */ 851 ModelItem *item = static_cast<ModelItem*>(idx.internalPointer()); 853 return item->setData(idx.column(), value, role); 861 ModelItem *item = static_cast<ModelItem*>(idx.internalPointer()); 863 return item->data(idx.column(), role); 871 ModelItem *item = static_cast<ModelItem*>(idx.internalPointer()); 873 return Qt::ItemIsEnabled | Qt::ItemIsSelectable | item 950 ModelItem *item = static_cast<ModelItem*>(index.internalPointer()); local 972 ModelItem *item = static_cast<ModelItem*>(index.internalPointer()); local 987 ModelItem *item = static_cast<ModelItem*>(index.internalPointer()); local 1059 ModelItem *item = static_cast<ModelItem*>(i.internalPointer()); local [all...] |
/vbox/src/libs/xpcom18a4/java/tools/genifaces/ |
H A D | GenerateJavaInterfaces.cpp | 263 nsCOMPtr<nsISupports> item; local 264 rv = etor->CurrentItem(getter_AddRefs(item)); 267 nsCOMPtr<nsIInterfaceInfo> iface(do_QueryInterface(item));
|