Lines Matching refs:sprops

172     java_props_t *sprops = GetJavaProperties(env);
188 if (sprops == NULL || putID == NULL ) return NULL;
206 if (sprops->awt_toolkit) {
207 PUTPROP(props, "awt.toolkit", sprops->awt_toolkit);
211 PUTPROP(props, "os.name", sprops->os_name);
212 PUTPROP(props, "os.version", sprops->os_version);
213 PUTPROP(props, "os.arch", sprops->os_arch);
216 PUTPROP(props, "file.separator", sprops->file_separator);
217 PUTPROP(props, "path.separator", sprops->path_separator);
218 PUTPROP(props, "line.separator", sprops->line_separator);
226 PUTPROP(props, "user.language", sprops->language);
227 if (sprops->script) {
228 PUTPROP(props, "user.script", sprops->script);
230 if (sprops->country) {
231 PUTPROP(props, "user.country", sprops->country);
233 if (sprops->variant) {
234 PUTPROP(props, "user.variant", sprops->variant);
236 PUTPROP(props, "file.encoding", sprops->encoding);
237 PUTPROP(props, "sun.jnu.encoding", sprops->sun_jnu_encoding);
240 PUTPROP(props, "sun.io.unicode.encoding", sprops->unicode_encoding);
242 (sprops->cpu_isalist ? sprops->cpu_isalist : ""));
243 PUTPROP(props, "sun.cpu.endian", sprops->cpu_endian);
248 if (sprops->httpProxyEnabled) {
249 PUTPROP(props, "http.proxyHost", sprops->httpHost);
250 PUTPROP(props, "http.proxyPort", sprops->httpPort);
253 if (sprops->httpsProxyEnabled) {
254 PUTPROP(props, "https.proxyHost", sprops->httpsHost);
255 PUTPROP(props, "https.proxyPort", sprops->httpsPort);
258 if (sprops->ftpProxyEnabled) {
259 PUTPROP(props, "ftp.proxyHost", sprops->ftpHost);
260 PUTPROP(props, "ftp.proxyPort", sprops->ftpPort);
263 if (sprops->socksProxyEnabled) {
264 PUTPROP(props, "socksProxyHost", sprops->socksHost);
265 PUTPROP(props, "socksProxyPort", sprops->socksPort);
268 if (sprops->gopherProxyEnabled) {
271 PUTPROP(props, "gopherProxyHost", sprops->gopherHost);
272 PUTPROP(props, "gopherProxyPort", sprops->gopherPort);
279 if (sprops->exceptionList) {
280 PUTPROP(props, "http.nonProxyHosts", sprops->exceptionList);
282 PUTPROP(props, "ftp.nonProxyHosts", sprops->exceptionList);
283 PUTPROP(props, "socksNonProxyHosts", sprops->exceptionList);
302 PUTPROP(props, "java.awt.printerjob", sprops->printerJob);
305 if (sizeof(sprops) == 4) {
306 sprops->data_model = "32";
307 } else if (sizeof(sprops) == 8) {
308 sprops->data_model = "64";
310 sprops->data_model = "unknown";
313 sprops->data_model);
317 sprops->patch_level);
330 PUTPROP(props, "java.awt.graphicsenv", sprops->graphics_env);
331 if (sprops->font_dir != NULL) {
333 "sun.java2d.fontpath", sprops->font_dir);
336 PUTPROP_ForPlatformNString(props, "java.io.tmpdir", sprops->tmp_dir);
338 PUTPROP_ForPlatformNString(props, "user.name", sprops->user_name);
339 PUTPROP_ForPlatformNString(props, "user.home", sprops->user_home);
341 PUTPROP(props, "user.timezone", sprops->timezone);
343 PUTPROP_ForPlatformNString(props, "user.dir", sprops->user_dir);
348 if (sprops->desktop != NULL) {
349 PUTPROP(props, "sun.desktop", sprops->desktop);
375 fillI18nProps(env, props, "user.language", sprops->display_language,
376 sprops->format_language, putID, getPropID);
378 sprops->display_script, sprops->format_script, putID, getPropID);
380 sprops->display_country, sprops->format_country, putID, getPropID);
382 sprops->display_variant, sprops->format_variant, putID, getPropID);
390 PUTPROP(props, "file.encoding", sprops->encoding);
393 PUTPROP(props, "file.encoding", sprops->encoding);
395 PUTPROP(props, "file.encoding", sprops->sun_jnu_encoding);