/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | bootstrap | 2 rm -rf autom4te.cache
|
H A D | configure | 854 -cache-file | --cache-file | --cache-fil | --cache-fi \ 855 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 857 -cache-file=* | --cache-file=* | --cache [all...] |
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/ |
H A D | xmlconfig.h | 61 /** \brief Option cache 98 /** \brief Initialize option cache from info and parse configuration files 102 void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info, 108 /** \brief Destroy option cache 111 void driDestroyOptionCache (driOptionCache *cache); 114 GLboolean driCheckOption (const driOptionCache *cache, const char *name, 118 GLboolean driQueryOptionb (const driOptionCache *cache, const char *name); 120 GLint driQueryOptioni (const driOptionCache *cache, const char *name); 122 GLfloat driQueryOptionf (const driOptionCache *cache, const char *name);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | pcivpd.h | 121 /** PCI VPD cache */ 135 /** Read cache */ 136 struct pci_vpd_cache cache; member in struct:pci_vpd 151 * Check if PCI VPD read cache is valid 154 * @ret is_valid Read cache is valid 158 return ( vpd->cache.address >= 0 ); 162 * Invalidate PCI VPD read cache 168 vpd->cache.address = -1;
|
/vbox/include/VBox/ |
H A D | vd-plugin.h | 31 #include <VBox/vd-cache-backend.h> 49 * Registers a new cache backend. 53 * @param pBackend The cache backend to register.
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | xpath.c | 569 void *cache; member in struct:_xmlXPathStepOp 763 comp->steps[comp->nbStep].cache = NULL; 812 * XPath object cache structures * 818 #define XP_HAS_CACHE(c) ((c != NULL) && ((c)->cache != NULL)) 1356 if (ctxt->cache != NULL) { 1357 xmlXPathContextCachePtr cache = local 1358 (xmlXPathContextCachePtr) ctxt->cache; 1360 cache->dbgCachedAll = 0; 1361 cache->dbgCachedNodeset = 0; 1362 cache 1432 xmlXPathContextCachePtr cache = local 1586 xmlXPathContextCachePtr cache = local 1690 xmlXPathContextCachePtr cache = local 1839 xmlXPathFreeCache(xmlXPathContextCachePtr cache) argument 1887 xmlXPathContextCachePtr cache; local 1925 xmlXPathContextCachePtr cache = local 1962 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local 2014 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local 2078 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local 2127 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local 2181 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local 2229 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local 5441 xmlXPathContextCachePtr cache = local [all...] |
H A D | runsuite.c | 229 * Deactivate the cache if created; otherwise we have to create/free it 231 * Note that normally this need not be done, since the cache is not 234 * cache by default for the whole library. 236 if (ctxtXPath->cache != NULL)
|
H A D | configure | 1084 -cache-file | --cache-file | --cache-fil | --cache-fi \ 1085 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 1087 -cache-file=* | --cache-file=* | --cache [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/util/ |
H A D | niclist.pl | 546 function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};functio [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/ |
H A D | pcivpd.c | 83 ( vpd->cache.address == address ) ) { 84 *data = vpd->cache.data; 104 /* Populate cache */ 105 vpd->cache.address = address; 106 vpd->cache.data = *data; 139 /* Invalidate cache */
|
/vbox/src/VBox/Frontends/VirtualBox/src/medium/ |
H A D | UIMedium.h | 34 /** Storage medium cache used to 52 /** Holds whether the cache is set. */ 160 /** Returns the medium cache key. */ 162 /** Defines the medium cache @a strKey. */ 246 /** Returns the medium cache for "don't show diffs" mode. */ 247 const NoDiffsCache& cache() const { return m_noDiffs; } function in class:UIMedium 315 /** Holds the medium cache key. */ 345 /** Holds the medium cache for "don't show diffs" mode. */
|
H A D | UIMedium.cpp | 99 m_noDiffs = other.cache(); 141 /* Reset cache parameters: */
|
/vbox/src/libs/xpcom18a4/nsprpub/ |
H A D | Makefile.in | 63 DIST_GARBAGE = config.cache config.log config.status
|
H A D | configure | 67 cache_file=./config.cache 134 -cache-file | --cache-file | --cache-fil | --cache-fi \ 135 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 137 -cache-file=* | --cache [all...] |
/vbox/src/libs/liblzf-3.4/ |
H A D | configure | 743 -cache-file | --cache-file | --cache-fil | --cache-fi \ 744 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) 746 -cache-file=* | --cache-file=* | --cache [all...] |
/vbox/src/libs/libxml2-2.6.31/include/libxml/ |
H A D | xpath.h | 350 void *cache; member in struct:_xmlXPathContext
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/ |
H A D | phantom.c | 449 } cache; local 454 sub_offset = ( offset & ( sizeof ( cache ) - 1 ) ); 455 offset = ( offset & ~( sizeof ( cache ) - 1 ) ); 459 cache.dwords )) !=0 ) 464 return cache.bytes[sub_offset];
|
/vbox/src/VBox/Installer/linux/rpm/ |
H A D | VirtualBox.tmpl.spec | 312 gtk-update-icon-cache -q /usr/share/icons/hicolor 2> /dev/null || : 436 gtk-update-icon-cache -q /usr/share/icons/hicolor 2> /dev/null || :
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/Ia32/ |
H A D | AsmFuncs.S | 136 ## To do this, we check the exception number pushed by the stub, and cache the
|
H A D | AsmFuncs.asm | 233 ;; To do this, we check the exception number pushed by the stub, and cache the
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
H A D | LzmaEnc.c | 237 Byte cache; member in struct:_CRangeEnc 523 p->cache = 0; 547 Byte temp = p->cache; 558 p->cache = (Byte)((UInt32)p->low >> 24);
|
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/ |
H A D | UIMachineSettingsStorage.h | 378 void cache(); 669 /* Load data to cache from corresponding external object(s), 672 /* Load data to corresponding widgets from cache, 676 /* Save data from corresponding widgets to cache, 679 /* Save data from cache to corresponding external object(s),
|
/vbox/src/VBox/Main/include/ |
H A D | Performance.h | 792 GuestRamUsage(CollectorGuest *cguest, ComPtr<IUnknown> object, SubMetric *total, SubMetric *free, SubMetric *balloon, SubMetric *shared, SubMetric *cache, SubMetric *pagedtotal) argument 793 : BaseGuestMetric(cguest, "Guest/RAM/Usage", object), mTotal(total), mFree(free), mBallooned(balloon), mCache(cache), mPagedTotal(pagedtotal), mShared(shared) {};
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/X64/ |
H A D | AsmFuncs.asm | 261 ;; To do this, we check the exception number pushed by the stub, and cache the
|
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | http.jar | META-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/net/ com/sun/net/httpserver/ ... |