Searched refs:splash (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.c34 static Splash splash; local
37 memset(&splash, 0, sizeof(Splash));
38 splash.currentFrame = -1;
41 return &splash;
46 Splash *splash = SplashGetInstance(); local
48 free(splash->fileName);
49 splash->fileName = SplashConvertStringAlloc(fileName, &splash->fileNameLen);
51 free(splash->jarName);
52 splash
58 Splash *splash = SplashGetInstance(); local
70 Splash *splash = SplashGetInstance(); local
81 SplashCleanup(Splash * splash) argument
105 SplashDone(Splash * splash) argument
112 SplashIsStillLooping(Splash * splash) argument
121 SplashUpdateScreenData(Splash * splash) argument
147 SplashNextFrame(Splash * splash) argument
241 Splash *splash = SplashGetInstance(); local
301 SplashStart(Splash * splash) argument
[all...]
H A Djava_awt_SplashScreen.c50 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
53 if (!splash) {
56 SplashLock(splash);
58 if (splash->overlayData) {
59 free(splash->overlayData);
61 splash->overlayData = SAFE_SIZE_ARRAY_ALLOC(malloc, dataSize, sizeof(rgbquad_t));
62 if (splash->overlayData) {
65 (jint *) splash->overlayData);
66 initFormat(&splash->overlayFormat, 0xFF0000, 0xFF00, 0xFF, 0xFF000000);
67 initRect(&splash
85 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
102 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
153 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
171 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
190 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
208 Splash *splash = (Splash *) jlong_to_ptr(jsplash); local
[all...]
H A Dsplashscreen_impl.h104 /* various shared and/or platform dependent splash screen functions */
111 void SplashInitPlatform(Splash * splash);
112 void SplashCreateThread(Splash * splash);
113 void SplashCleanupPlatform(Splash * splash);
114 void SplashDonePlatform(Splash * splash);
119 void SplashLock(Splash * splash);
120 void SplashUnlock(Splash * splash);
122 void SplashInitFrameShape(Splash * splash, int imageIndex);
124 void SplashUpdate(Splash * splash);
125 void SplashReconfigure(Splash * splash);
[all...]
H A Dsplashscreen_png.c46 SplashDecodePng(Splash * splash, png_rw_ptr read_func, void *io_ptr) argument
126 SplashCleanup(splash);
128 splash->width = width;
129 splash->height = height;
131 if (!SAFE_TO_ALLOC(splash->width, splash->imageFormat.depthBytes)) {
134 stride = splash->width * splash->imageFormat.depthBytes;
136 if (!SAFE_TO_ALLOC(splash->height, stride)) {
139 splash
178 SplashDecodePngStream(Splash * splash, SplashStream * stream) argument
[all...]
H A Dsplashscreen_jpeg.c129 SplashDecodeJpeg(Splash * splash, struct jpeg_decompress_struct *cinfo) argument
142 SplashCleanup(splash);
144 splash->width = cinfo->output_width;
145 splash->height = cinfo->output_height;
147 if (!SAFE_TO_ALLOC(splash->imageFormat.depthBytes, splash->width)) {
150 stride = splash->width * splash->imageFormat.depthBytes;
152 if (!SAFE_TO_ALLOC(stride, splash->height)) {
159 splash
232 SplashDecodeJpegStream(Splash * splash, SplashStream * stream) argument
[all...]
H A Dsplashscreen_gif.c77 SplashDecodeGif(Splash * splash, GifFileType * gif) argument
92 SplashCleanup(splash);
94 if (!SAFE_TO_ALLOC(gif->SWidth, splash->imageFormat.depthBytes)) {
97 stride = gif->SWidth * splash->imageFormat.depthBytes;
98 if (splash->byteAlignment > 1)
100 (stride + splash->byteAlignment - 1) & ~(splash->byteAlignment - 1);
121 splash->width = gif->SWidth;
122 splash->height = gif->SHeight;
123 splash
319 SplashDecodeGifStream(Splash * splash, SplashStream * stream) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m54 static void SplashCenter(Splash * splash)
58 splash->x = (screenFrame.size.width - splash->width) / 2;
59 splash->y = (screenFrame.size.height - splash->height) / 2 + screenFrame.origin.y;
130 SplashInitPlatform(Splash * splash) {
131 pthread_mutex_init(&splash->lock, NULL);
133 splash->maskRequired = 0;
139 splash->byteAlignment = 1;
140 initFormat(&splash
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c49 void SplashRemoveDecoration(Splash * splash);
106 SplashInitFrameShape(Splash * splash, int imageIndex) { argument
109 SplashImage *frame = splash->frames + imageIndex;
114 if (!splash->maskRequired)
118 initRect(&maskRect, 0, 0, splash->width, splash->height, 1,
119 splash->width * splash->imageFormat.depthBytes,
120 splash->frames[imageIndex].bitmapBits, &splash
210 SplashCenter(Splash * splash) argument
238 SplashUpdateSizeHints(Splash * splash) argument
252 SplashCreateWindow(Splash * splash) argument
283 SplashUpdateShape(Splash * splash) argument
299 SplashRevertShape(Splash * splash) argument
326 SplashRedrawWindow(Splash * splash) argument
352 SplashReconfigureNow(Splash * splash) argument
371 sendctl(Splash * splash, char code) argument
406 SplashInitPlatform(Splash * splash) argument
510 SplashCleanupPlatform(Splash * splash) argument
525 SplashDonePlatform(Splash * splash) argument
548 SplashEventLoop(Splash * splash) argument
649 SplashRemoveDecoration(Splash * splash) argument
726 Splash *splash = (Splash *) arg; local
735 Splash *splash = (Splash *) param; local
764 SplashCreateThread(Splash * splash) argument
774 SplashLock(Splash * splash) argument
779 SplashUnlock(Splash * splash) argument
784 SplashClosePlatform(Splash * splash) argument
789 SplashUpdate(Splash * splash) argument
794 SplashReconfigure(Splash * splash) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c95 SplashInitFrameShape(Splash * splash, int imageIndex) argument
101 if (!splash->maskRequired)
105 if (!IS_SAFE_SIZE_MUL(splash->width / 2 + 1, splash->height)) {
109 sizeof(RECT), (splash->width / 2 + 1) * splash->height);
114 initRect(&maskRect, 0, 0, splash->width, splash->height, 1,
115 splash->width * splash
139 SplashPaint(Splash * splash, HDC hdc) argument
214 SplashRedrawWindow(Splash * splash) argument
311 SplashReconfigureNow(Splash * splash) argument
352 Splash *splash = (Splash *) GetWindowLongPtr(hWnd, GWLP_USERDATA); local
388 SplashCreateWindow(Splash * splash) argument
422 SplashLock(Splash * splash) argument
428 SplashUnlock(Splash * splash) argument
434 SplashInitPlatform(Splash * splash) argument
485 SplashCleanupPlatform(Splash * splash) argument
503 SplashDonePlatform(Splash * splash) argument
523 Splash *splash = (Splash *) param; local
542 SplashCreateThread(Splash * splash) argument
550 SplashClosePlatform(Splash * splash) argument
556 SplashUpdate(Splash * splash) argument
562 SplashReconfigure(Splash * splash) argument
[all...]
/openjdk7/jdk/make/mkdemo/jfc/SwingSet2/
H A DMakefile38 DEMO_MANIFEST_ATTR = SplashScreen-Image: resources/images/splash.png

Completed in 502 milliseconds