Searched refs:token (Results 1 - 25 of 25) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/zconsole/src/java/vpanels/app/zconsole/com/oracle/solaris/vp/panels/zconsole/client/text/
H A DZoneIOThread.java43 private long token; field in class:ZoneIOThread
49 public ZoneIOThread(IO bean, long token) { argument
51 this.token = token;
75 return token;
H A DBeanToStdout.java38 public BeanToStdout(IO bean, long token) { argument
39 super(bean, token);
50 long token = getToken();
54 while ((bytes = bean.read(token, BLOCKSIZE)) != null) {
H A DStdinToBean.java57 public StdinToBean(IO bean, long token, byte escape, boolean noext) { argument
58 super(bean, token);
71 long token = getToken();
133 bean.write(token, write);
H A DMainControl.java52 private long token; field in class:MainControl
95 token = bean.openConsole(zone);
124 beanToStdout = new BeanToStdout(bean, token) {
132 stdinToBean = new StdinToBean(bean, token, escape, noext) {
168 bean.close(token);
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/path/
H A DPathDocument.java37 // The found token, or null if not found
38 public String token; field in class:PathDocument.TokenSearchResult
40 // The index of the found token, or -1 if not found
54 for (String token : TOKENS) {
55 if (token.length() > MAX_TOKEN_LENGTH) {
56 MAX_TOKEN_LENGTH = token.length();
88 // If offset is in the middle of a token element, move it to the end
123 if (result.token == null) {
128 // result.token, search, result.index);
130 AttributeSet style = factory.getAttributeSet(result.token);
[all...]
H A DTokenAttributeSetFactory.java31 AttributeSet getAttributeSet(String token); argument
H A DTokenLabel.java46 private String token; field in class:TokenLabel.TokenRenderInfo
54 public TokenRenderInfo(String token, String tooltip, Color background) { argument
55 this.token = token;
65 return token;
93 String token = PathDocument.TOKENS[i];
94 String toolTip = Finder.getString("path.token.label." + token);
111 RENDER_INFO.put(token, new TokenRenderInfo(token, toolTi
133 TokenLabel(String token) argument
175 setText(String token) argument
[all...]
H A DTokenComboBox.java58 private TokenLabel token; field in class:TokenComboBox.TokenListCellRenderer
71 token = new TokenLabel();
73 token.setText(t);
74 Dimension p = token.getPreferredSize();
79 token.setPreferredSize(d);
80 token.setHorizontalAlignment(SwingConstants.CENTER);
90 inListPanel.add(token, BorderLayout.WEST);
111 token.setText((String)value);
112 text.setText(token.getToolTipText());
H A DPathField.java57 public AttributeSet getAttributeSet(String token) { argument
59 Component renderer = new TokenLabel(token);
111 for (String token : PathDocument.TOKENS) {
112 buffer.append(token).append('/');
/solaris-userland-s11u3/components/net-snmp/sun/sdk/demo/demo_module_4/
H A Dme4LoadGroup.h39 void read_load_thresholds(const char *token, char *cptr);
H A Dme4LoadGroup.c116 * Register for thresholds. When a token (say threshold_loadavg1) is
328 * read_load_thresholds: This function is called when a registered token (see
330 * file. The token's values (thresholds) are then stored in some variables.
334 read_load_thresholds(const char *token, char *cptr) argument
337 if (strcmp(token, "threshold_loadavg1") == 0) {
339 } else if (strcmp(token, "threshold_loadavg5") == 0) {
341 } else if (strcmp(token, "threshold_loadavg15") == 0) {
/solaris-userland-s11u3/components/net-snmp/sun/sdk/demo/demo_module_5/
H A Ddemo_module_5.h33 void demo5_load_tokens(const char *token, char *cptr);
H A Ddemo_module_5.c563 * demo_module_5.conf file. The token values represent the persistent filename
568 demo5_load_tokens(const char *token, char *cptr) argument
571 if (strcmp(token, "demo5_file1") == 0) {
573 } else if (strcmp(token, "demo5_file2") == 0) {
575 } else if (strcmp(token, "demo5_file3") == 0) {
577 } else if (strcmp(token, "demo5_file4") == 0) {
/solaris-userland-s11u3/components/openstack/keystone/files/
H A Dkeystone.conf7 # A "shared secret" that can be used to bootstrap Keystone. This "token" does
44 # Similar to max_param_size, but provides an exception for token values.
276 #methods = external,password,token,oauth1
281 # The token auth plugin module. (string value)
282 #token = keystone.auth.plugins.token.Token
649 # to return a token, the origin host must be a member of the trusted_dashboard
655 # Location of Single Sign-On callback handler, will return a token to a trusted
666 # Directory containing Fernet token keys. (string value)
1137 # again. This is used by the key value store system (e.g. token poole
[all...]
/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11_uri.h63 #define PK11_TOKEN "token"
87 char *token; /* token label */ member in struct:pkcs11_uri_struct
93 char *pin; /* token PIN */
H A De_pk11_uri.c122 *pin = getpassphrase("Enter token PIN: ");
181 * it is not considered an error since it depends on the token attributes
251 if (uri_struct->token == NULL)
253 if ((uri_struct->token = strdup(l2)) == NULL)
324 /* The "object" token is mandatory in the PKCS#11 URI. */
353 if (uri_struct->token != NULL)
354 free(uri_struct->token);
411 if (uri_struct->token != NULL)
412 if (strncmp(uri_struct->token, (char *)token_info->label,
413 strlen(uri_struct->token) > 3
[all...]
/solaris-userland-s11u3/tools/
H A Dgen-components146 for token in tokens:
148 component_path += token + "/"
149 if token == "components":
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DMimeType.java235 public static boolean isValidToken(String token) { argument
236 int length = token.length();
242 if (!isTokenChar(token.charAt(i))) {
/solaris-userland-s11u3/components/apache2/mod_auth_gss/
H A Dmod_auth_gss.c442 char *token = NULL; local
445 token = apr_pcalloc(r->connection->pool, len + 1);
446 if (token == NULL) {
453 apr_base64_encode(token, output_token.value, output_token.length);
454 token[len] = '\0';
455 *negotiate_ret_value = token;
/solaris-userland-s11u3/components/apache24/mod_auth_gss/
H A Dmod_auth_gss.c402 char *token = NULL; local
405 token = apr_pcalloc(r->connection->pool, len + 1);
406 if (token == NULL) {
413 apr_base64_encode(token, output_token.value, output_token.length);
414 token[len] = '\0';
415 *negotiate_ret_value = token;
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/
H A DhealthMonitor.c388 * a token is encountered in health_monitor.conf file, the function
2187 * a registered token is encountered in health_monitor.conf file. The
2188 * function simply stores the token's value in the appropriate threshold
2193 read_health_monitor_thresholds(const char *token, char *cptr) argument
2196 if (strcmp(token, "hm_refresh_interval") == 0) {
2198 } else if (strcmp(token, "threshold_swapavail_info") == 0) {
2200 } else if (strcmp(token, "threshold_swapavail_warning") == 0) {
2202 } else if (strcmp(token, "threshold_swapavail_error") == 0) {
2204 } else if (strcmp(token, "threshold_mutex_info") == 0) {
2206 } else if (strcmp(token, "threshold_mutex_warnin
[all...]
H A DhealthMonitor.h76 void read_health_monitor_thresholds(const char *token, char *cptr);
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/
H A DCoreAdmOptionsPanel.java103 String token = (String)pathCombo.getSelectedItem();
104 if (token != null) {
105 pathField.replaceSelection(token);
/solaris-userland-s11u3/components/libusb/wrapper/src/
H A Dwr_libusb.c736 char *token; local
834 token = strtok(version_store, ".");
847 "plugin rev is %d\n", atoi(token));
850 if (atoi(token) != atoi(wr_token)) {
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/
H A DRadLoginManager.java1146 byte[] token = userAuth.createToken();
1158 roleAuth.redeemToken(userVal, token);
1410 byte[] token = userAuth.createToken();
1430 roleAuth.redeemToken(userVal, token);

Completed in 132 milliseconds