Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
61af53c3
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
61af53c3
编写于
6月 25, 2012
作者:
L
lana
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
e73fff88
e906c83a
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
27 addition
and
10 deletion
+27
-10
src/share/classes/sun/font/SunLayoutEngine.java
src/share/classes/sun/font/SunLayoutEngine.java
+3
-3
src/share/classes/sun/print/ServiceDialog.java
src/share/classes/sun/print/ServiceDialog.java
+1
-0
src/share/native/sun/awt/image/jpeg/jpegdecoder.c
src/share/native/sun/awt/image/jpeg/jpegdecoder.c
+1
-1
src/solaris/classes/sun/print/CUPSPrinter.java
src/solaris/classes/sun/print/CUPSPrinter.java
+14
-2
src/solaris/classes/sun/print/UnixPrintServiceLookup.java
src/solaris/classes/sun/print/UnixPrintServiceLookup.java
+8
-4
未找到文件。
src/share/classes/sun/font/SunLayoutEngine.java
浏览文件 @
61af53c3
...
...
@@ -33,7 +33,7 @@ package sun.font;
import
sun.font.GlyphLayout.*
;
import
java.awt.geom.Point2D
;
import
java.lang.ref.SoftReference
;
import
java.util.HashMap
;
import
java.util.
concurrent.Concurrent
HashMap
;
import
java.util.Locale
;
/*
...
...
@@ -129,9 +129,9 @@ public final class SunLayoutEngine implements LayoutEngine, LayoutEngineFactory
// !!! don't need this unless we have more than one sun layout engine...
public
LayoutEngine
getEngine
(
LayoutEngineKey
key
)
{
HashMap
cache
=
(
HashMap
)
cacheref
.
get
();
ConcurrentHashMap
cache
=
(
Concurrent
HashMap
)
cacheref
.
get
();
if
(
cache
==
null
)
{
cache
=
new
HashMap
();
cache
=
new
Concurrent
HashMap
();
cacheref
=
new
SoftReference
(
cache
);
}
...
...
src/share/classes/sun/print/ServiceDialog.java
浏览文件 @
61af53c3
...
...
@@ -429,6 +429,7 @@ public class ServiceDialog extends JDialog implements ActionListener {
ValidatingFileChooser
jfc
=
new
ValidatingFileChooser
();
jfc
.
setApproveButtonText
(
getMsg
(
"button.ok"
));
jfc
.
setDialogTitle
(
getMsg
(
"dialog.printtofile"
));
jfc
.
setDialogType
(
JFileChooser
.
SAVE_DIALOG
);
jfc
.
setSelectedFile
(
fileDest
);
int
returnVal
=
jfc
.
showDialog
(
this
,
null
);
...
...
src/share/native/sun/awt/image/jpeg/jpegdecoder.c
浏览文件 @
61af53c3
...
...
@@ -337,7 +337,7 @@ sun_jpeg_fill_suspended_buffer(j_decompress_ptr cinfo)
/* Save the data currently in the buffer */
offset
=
src
->
pub
.
bytes_in_buffer
;
if
(
src
->
pub
.
next_input_byte
>
src
->
inbuf
)
{
mem
cpy
(
src
->
inbuf
,
src
->
pub
.
next_input_byte
,
offset
);
mem
move
(
src
->
inbuf
,
src
->
pub
.
next_input_byte
,
offset
);
}
RELEASE_ARRAYS
(
env
,
src
);
buflen
=
(
*
env
)
->
GetArrayLength
(
env
,
src
->
hInputBuffer
)
-
offset
;
...
...
src/solaris/classes/sun/print/CUPSPrinter.java
浏览文件 @
61af53c3
...
...
@@ -278,14 +278,26 @@ public class CUPSPrinter {
is
);
is
.
close
();
if
(
responseMap
.
length
>
0
)
{
if
(
responseMap
!=
null
&&
responseMap
.
length
>
0
)
{
defaultMap
=
responseMap
[
0
];
}
if
(
defaultMap
==
null
)
{
os
.
close
();
urlConnection
.
disconnect
();
return
null
;
/* CUPS on OS X, as initially configured, considers the
* default printer to be the last one used that's
* presently available. So if no default was
* reported, exec lpstat -d which has all the Apple
* special behaviour for this built in.
*/
if
(
UnixPrintServiceLookup
.
isMac
())
{
return
UnixPrintServiceLookup
.
getDefaultPrinterNameSysV
();
}
else
{
return
null
;
}
}
AttributeClass
attribClass
=
(
AttributeClass
)
...
...
src/solaris/classes/sun/print/UnixPrintServiceLookup.java
浏览文件 @
61af53c3
...
...
@@ -114,6 +114,10 @@ public class UnixPrintServiceLookup extends PrintServiceLookup
new
sun
.
security
.
action
.
GetPropertyAction
(
"os.name"
));
}
static
boolean
isMac
()
{
return
osname
.
startsWith
(
"Mac"
);
}
static
boolean
isSysV
()
{
return
osname
.
equals
(
"SunOS"
);
}
...
...
@@ -212,7 +216,7 @@ public class UnixPrintServiceLookup extends PrintServiceLookup
}
}
}
else
{
if
(
isSysV
())
{
if
(
is
Mac
()
||
is
SysV
())
{
printers
=
getAllPrinterNamesSysV
();
}
else
{
//BSD
printers
=
getAllPrinterNamesBSD
();
...
...
@@ -361,7 +365,7 @@ public class UnixPrintServiceLookup extends PrintServiceLookup
if
(
name
==
null
||
name
.
equals
(
""
)
||
!
checkPrinterName
(
name
))
{
return
null
;
}
if
(
isSysV
())
{
if
(
is
Mac
()
||
is
SysV
())
{
printer
=
getNamedPrinterNameSysV
(
name
);
}
else
{
printer
=
getNamedPrinterNameBSD
(
name
);
...
...
@@ -523,7 +527,7 @@ public class UnixPrintServiceLookup extends PrintServiceLookup
if
(
CUPSPrinter
.
isCupsRunning
())
{
defaultPrinter
=
CUPSPrinter
.
getDefaultPrinter
();
}
else
{
if
(
isSysV
())
{
if
(
is
Mac
()
||
is
SysV
())
{
defaultPrinter
=
getDefaultPrinterNameSysV
();
}
else
{
defaultPrinter
=
getDefaultPrinterNameBSD
();
...
...
@@ -644,7 +648,7 @@ public class UnixPrintServiceLookup extends PrintServiceLookup
return
names
;
}
private
String
getDefaultPrinterNameSysV
()
{
static
String
getDefaultPrinterNameSysV
()
{
String
defaultPrinter
=
"lp"
;
String
command
=
"/usr/bin/lpstat -d"
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录