| /vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
| H A D | volume.c | 44 struct wined3d_texture *container = volume->container; local 60 container->texture_ops->texture_bind(container, context, FALSE); 86 void volume_set_container(struct wined3d_volume *volume, struct wined3d_texture *container) argument 88 TRACE("volume %p, container %p.\n", volume, container); 90 volume->container = container; 122 * the texture name is managed by the VolumeTexture container [all...] |
| H A D | surface.c | 224 void surface_set_container(struct wined3d_surface *surface, struct wined3d_texture *container) argument 226 TRACE("surface %p, container %p.\n", surface, container); 246 surface->container = container; 449 * container about this to get the filters reset properly next draw. */ 450 if (src_surface->container) 452 struct wined3d_texture *texture = src_surface->container; 669 if(surface->container) 726 if (surface->container) [all...] |
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/ |
| H A D | volume.c | 72 /* No container, handle our own refcounting */ 102 /* No container, handle our own refcounting */ 190 static HRESULT WINAPI d3d8_volume_GetContainer(IDirect3DVolume8 *iface, REFIID riid, void **container) argument 195 TRACE("iface %p, riid %s, container %p.\n", 196 iface, debugstr_guid(riid), container); 198 if (!volume->container) 201 res = IUnknown_QueryInterface(volume->container, riid, container); 203 TRACE("Returning %p.\n", *container);
|
| H A D | surface.c | 73 /* No container, handle our own refcounting */ 105 /* No container, handle our own refcounting */ 210 static HRESULT WINAPI d3d8_surface_GetContainer(IDirect3DSurface8 *iface, REFIID riid, void **container) argument 215 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), container); 217 if (!surface->container) 220 hr = IUnknown_QueryInterface(surface->container, riid, container); 222 TRACE("Returning %p.\n", *container);
|
| H A D | d3d8_private.h | 191 IUnknown *container; member in struct:d3d8_volume 216 /* The surface container */ 217 IUnknown *container; member in struct:d3d8_surface
|
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/ |
| H A D | volume.c | 183 static HRESULT WINAPI d3d9_volume_GetContainer(IDirect3DVolume9 *iface, REFIID riid, void **container) argument 188 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), container); 190 if (!volume->container) 193 hr = IUnknown_QueryInterface(volume->container, riid, container); 195 TRACE("Returning %p,\n", *container);
|
| H A D | surface.c | 249 static HRESULT WINAPI d3d9_surface_GetContainer(IDirect3DSurface9 *iface, REFIID riid, void **container) argument 254 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), container); 256 if (!surface->container) 259 hr = IUnknown_QueryInterface(surface->container, riid, container); 261 TRACE("Returning %p.\n", *container);
|
| H A D | d3d9_private.h | 192 IUnknown *container; member in struct:d3d9_volume 221 IUnknown *container; member in struct:d3d9_surface
|
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
| H A D | volume.c | 181 * texture name is managed by the VolumeTexture container 204 if (!This->container) { 205 ERR("Volume without an container. Should not happen.\n"); 210 return IUnknown_QueryInterface(This->container, riid, ppContainer); 289 if (NULL != This->container) { 291 IWineD3DVolumeTexture *cont = (IWineD3DVolumeTexture*) This->container; 299 FIXME("Set dirty on container type %d\n", containerType); 324 static HRESULT WINAPI IWineD3DVolumeImpl_SetContainer(IWineD3DVolume *iface, IWineD3DBase* container) { argument 327 TRACE("This %p, container %p\n", This, container); [all...] |
| H A D | surface_base.c | 167 IWineD3DBase *container = 0; local 175 /* Standalone surfaces return the device as container. */ 176 if (This->container) container = This->container; 177 else container = (IWineD3DBase *)This->resource.device; 180 return IUnknown_QueryInterface(container, riid, ppContainer); 501 HRESULT WINAPI IWineD3DBaseSurfaceImpl_SetContainer(IWineD3DSurface *iface, IWineD3DBase *container) { argument 504 TRACE("This %p, container %p\n", This, container); [all...] |
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/ |
| H A D | volume.c | 63 /* No container, handle our own refcounting */ 90 /* No container, handle our own refcounting */ 171 TRACE("iface %p, riid %s, container %p.\n", 174 if (!This->container) return E_NOINTERFACE; 180 res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
| H A D | surface.c | 64 /* No container, handle our own refcounting */ 91 /* No container, handle our own refcounting */ 189 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer); 191 if (!This->container) return E_NOINTERFACE; 193 res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
| H A D | d3d8_private.h | 224 /* The volume container */ 225 IUnknown *container; member in struct:IDirect3DVolume8Impl 276 /* The surface container */ 277 IUnknown *container; member in struct:IDirect3DSurface8Impl
|
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/ |
| H A D | volume.c | 64 /* No container, handle our own refcounting */ 90 /* No container, handle our own refcounting */ 177 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer); 179 if (!This->container) return E_NOINTERFACE; 185 res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
| H A D | surface.c | 65 /* No container, handle our own refcounting */ 93 /* No container, handle our own refcounting */ 240 TRACE("iface %p, riid %s, container %p.\n", iface, debugstr_guid(riid), ppContainer); 242 if (!This->container) return E_NOINTERFACE; 248 res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
| H A D | d3d9_private.h | 259 /* The volume container */ 260 IUnknown *container; member in struct:IDirect3DVolume9Impl 319 /* The surface container */ 320 IUnknown *container; member in struct:IDirect3DSurface9Impl
|
| /vbox/src/libs/xpcom18a4/xpcom/MoreFiles/ |
| H A D | MoreFilesX.c | 85 Boolean containerChanged; /* temporary - set to true if the current container changed during iteration */ 106 const FSRef *container, 813 /* get nodeFlags and vRefNum for container */ 1449 The FSDeleteContainerLevel function deletes the contents of a container 1450 directory. All files and subdirectories in the specified container are 1455 container --> FSRef to a directory. 1466 const FSRef *container, 1475 theGlobals->result = FSOpenIterator(container, kFSIterateFlat + kFSIterateDelete, &iterator); 1530 const FSRef *container) 1534 /* delete container' 1465 FSDeleteContainerLevel( const FSRef *container, FSDeleteContainerGlobals *theGlobals) argument 1529 FSDeleteContainerContents( const FSRef *container) argument 1543 FSDeleteContainer( const FSRef *container) argument 1664 FSIterateContainer( const FSRef *container, ItemCount maxLevels, FSCatalogInfoBitmap whichInfo, Boolean wantFSSpec, Boolean wantName, IterateContainerFilterProcPtr iterateFilter, void *yourDataPtr) argument 1725 FSGetDirectoryItems( const FSRef *container, FSRef ***refsHandle, ItemCount *numRefs, Boolean *containerChanged) argument [all...] |
| H A D | MoreFilesX.h | 1092 const FSRef *container); 1095 The FSDeleteContainerContents function deletes the contents of a container 1096 directory. All files and subdirectories in the specified container are 1101 container --> FSRef to a directory. 1114 const FSRef *container); 1117 The FSDeleteContainer function deletes a container directory and its contents. 1118 All files and subdirectories in the specified container are deleted. 1120 deleted. After deleting the container's contents, the container is 1124 container [all...] |
| H A D | FSCopyObject.c | 164 Boolean containerChanged; /* temporary - set to true if the current container changed during iteration */ 284 static OSErr FSDeleteFolder( const FSRef *container ); 286 static void FSDeleteFolderLevel( const FSRef *container, 727 // Call FSGetCatalogInfoBulk in loop to get all items in the container 1393 // get nodeFlags for container 1417 OSErr FSDeleteFolder( const FSRef *container ) 1421 theGlobals.result = ( container != NULL ) ? noErr : paramErr; 1423 // delete container's contents 1425 FSDeleteFolderLevel(container, &theGlobals); 1434 void FSDeleteFolderLevel( const FSRef *container, argument [all...] |
| /vbox/src/VBox/RDP/client-1.8.3/ |
| H A D | cssp.c | 327 cssp_encode_tscspdatadetail(unsigned char keyspec, char *card, char *reader, char *container, argument 381 if (container) 383 s_realloc(&tmp, 4 + strlen(container) * sizeof(uint16)); 385 rdp_out_unistr(&tmp, container, strlen(container) * sizeof(uint16));
|
| /vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/ |
| H A D | wined3d.h | 3905 void **container) = 0; 4009 IWineD3DBase *container) = 0; 4100 void **container); 4227 IWineD3DBase *container); 4278 #define IWineD3DSurface_GetContainer(This,riid,container) (This)->lpVtbl->GetContainer(This,riid,container) 4306 #define IWineD3DSurface_SetContainer(This,container) (This)->lpVtbl->SetContainer(This,container) 4321 void **container); 4560 IWineD3DBase *container); [all...] |
| /vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
| H A D | wined3d.h | 3906 void **container) = 0; 4010 IWineD3DBase *container) = 0; 4101 void **container); 4228 IWineD3DBase *container); 4279 #define IWineD3DSurface_GetContainer(This,riid,container) (This)->lpVtbl->GetContainer(This,riid,container) 4307 #define IWineD3DSurface_SetContainer(This,container) (This)->lpVtbl->SetContainer(This,container) 4322 void **container); 4561 IWineD3DBase *container); [all...] |
| /vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/ |
| H A D | wined3d.h | 3905 void **container) = 0; 4009 IWineD3DBase *container) = 0; 4100 void **container); 4227 IWineD3DBase *container); 4278 #define IWineD3DSurface_GetContainer(This,riid,container) (This)->lpVtbl->GetContainer(This,riid,container) 4306 #define IWineD3DSurface_SetContainer(This,container) (This)->lpVtbl->SetContainer(This,container) 4321 void **container); 4560 IWineD3DBase *container); [all...] |
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/ |
| H A D | wined3d.h | 3886 void **container) = 0; 3990 IWineD3DBase *container) = 0; 4081 void **container); 4208 IWineD3DBase *container); 4259 #define IWineD3DSurface_GetContainer(This,riid,container) (This)->lpVtbl->GetContainer(This,riid,container) 4287 #define IWineD3DSurface_SetContainer(This,container) (This)->lpVtbl->SetContainer(This,container) 4302 void **container); 4541 IWineD3DBase *container); [all...] |
| /vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/ |
| H A D | wined3d.h | 3905 void **container) = 0; 4009 IWineD3DBase *container) = 0; 4100 void **container); 4227 IWineD3DBase *container); 4278 #define IWineD3DSurface_GetContainer(This,riid,container) (This)->lpVtbl->GetContainer(This,riid,container) 4306 #define IWineD3DSurface_SetContainer(This,container) (This)->lpVtbl->SetContainer(This,container) 4321 void **container); 4560 IWineD3DBase *container); [all...] |