Searched defs:size (Results 1 - 25 of 26) sorted by relevance

12

/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/
H A DLoginHistory.java50 * @param size The number of most recently used {@code LoginInfo} objects
53 public List<LoginInfo> getLogins(int size); argument
/solaris-userland-s11u3/components/ruby/puppet/ext/
H A Dpuppet_audit.c60 size_t size = NSS_BUFLEN_PASSWD; local
70 if ((buffer = malloc(size)) == NULL)
74 if (getpwnam_r("puppet", &pwd, buffer, size, &result) != 0) {
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DGraphicsUtil.java38 BufferedImage image, int size, float opacity) {
40 int width = image.getWidth() + size * 2;
41 int height = image.getHeight() + size * 2;
47 g2.drawImage(image, size, size, null);
54 BufferedImage shadow = createBlurOp(size).filter(mask, null);
61 // public static BufferedImage addDropShadow(BufferedImage image, int size,
64 // BufferedImage shadow = createDropShadow(image, size, opacity);
66 // int width = image.getWidth() + size / 2 +
67 // Math.max(Math.abs(xOffset), size
37 createDropShadow( BufferedImage image, int size, float opacity) argument
169 createBlurOp(int size) argument
[all...]
H A DArrowIcon.java62 private int size; field in class:ArrowIcon
69 public ArrowIcon(Direction direction, int size, Color color) { argument
71 this.size = size;
75 public ArrowIcon(Direction direction, int size) { argument
76 this(direction, size, null);
94 int size = getSize();
95 for (int x = 0; x < (size + 1) / 2; x++) {
96 drawLine(g, x, x, x, size - x - 1);
106 return (size
[all...]
H A DResizeAnimator.java80 * @param size
81 * the new size of the {@code Component}
83 public ResizeAnimator(Component component, Dimension size) { argument
85 setTargetSize(size);
112 * @param size
113 * the new size of the {@code Component}
115 public ResizeAnimator(Component component, int speed, Dimension size) { argument
117 setTargetSize(size);
213 * Animates the resize of the {@code Component} to the given size. The
214 * duration of the animation is calculated based on the size o
[all...]
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/
H A DCoreManagedObject.java58 private long size; field in class:CoreManagedObject
65 long size) {
69 this.size = size;
104 return size;
107 protected void setSize(long size) { argument
108 this.size = size;
64 CoreManagedObject(CoreAdmPanelDescriptor descriptor, String name, long size) argument
/solaris-userland-s11u3/components/libusb/wrapper/src/
H A Dtestlibusb.c11 dump_data(unsigned char *data, int size) argument
15 if (size) {
17 for (i = 0; i < size; i++) {
H A Dwr_libusb.c1120 unsigned char type, unsigned char index, void *buf, int size)
1134 return ((*hdl)(dev, ep, type, index, buf, size));
1139 unsigned char index, void *buf, int size)
1152 return ((*hdl)(dev, type, index, buf, size));
1156 usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
1167 return (*hdl)(dev, ep, bytes, size, timeout);
1171 usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
1183 return ((*hdl)(dev, ep, bytes, size, timeout));
1188 int size, int timeout)
1200 return ((*hdl)(dev, ep, bytes, size, timeou
1119 usb_get_descriptor_by_endpoint(usb_dev_handle *dev, int ep, unsigned char type, unsigned char index, void *buf, int size) argument
1138 usb_get_descriptor(usb_dev_handle *dev, unsigned char type, unsigned char index, void *buf, int size) argument
1187 usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
1204 usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
1221 usb_control_msg(usb_dev_handle *dev, int requesttype, int request, int value, int index, char *bytes, int size, int timeout) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/finder/
H A DObjectCache.java177 public synchronized int size() { method in class:ObjectCache
178 return map.size();
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/layout/
H A DAbstractLayout.java43 * Gets the size of the {@code i}th element.
53 * Sets the size of the {@code i}th element.
55 void setSize(int i, int size); argument
111 public void setSize(int i, int size) { argument
112 sizes[i] = size;
174 int size = set.getSize(i);
175 if (size < 0) {
176 space -= size;
185 // If weights are all zeros, weight each size equally
198 // Verify that no non-zero weight is associated with a zero size
[all...]
H A DAbstractTableLayout.java47 private Dimension size; field in class:AbstractTableLayout.CellInfo
74 if (size == null) {
75 size = preferred ?
78 return size;
82 for (int i = parents.size() - 1; i >= 0; i--) {
96 private int size = -1; field in class:AbstractTableLayout.RowOrCol
126 size = -1;
140 * Get the maximum size (row height or column width) of every child
145 if (size == -1) {
149 if (s > size) {
187 setSize(int size) argument
227 setSize(int i, int size) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/
H A DLoginHistoryManager.java44 // Default login history size.
47 // Login history size.
107 * @param size The size of the persisted login history.
109 public LoginHistoryManager(ConnectionManager manager, File file, int size) { argument
113 setSize(size);
134 public List<LoginInfo> getLogins(int size) { argument
137 return list.subList(0, size);
158 * Get the size of persisted login history.
165 * Set the size o
170 setSize(int size) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/timezone/
H A DLocationPanel.java106 if (values_.size() != 1)
117 public LocationPanel(Icon background, Dimension size, argument
121 picker_.setPreferredSize(size);
152 int count = criteria.size() + 1;
/solaris-userland-s11u3/components/jansson/doc/html/_downloads/
H A Dgithub_commits.c36 static size_t write_response(void *ptr, size_t size, size_t nmemb, void *stream) argument
40 if(result->pos + size * nmemb >= BUFFER_SIZE - 1)
46 memcpy(result->data + result->pos, ptr, size * nmemb);
47 result->pos += size * nmemb;
49 return size * nmemb;
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/
H A DDoubleTreesLayout.java69 protected Dimension size; field in class:DoubleTreesLayout
92 size = ZERO_SIZE;
218 size = parent.getSize();
317 // see if we have a preferred size > minimum size
352 // adjust size and locations to accomodate insets
362 * Adjust components size and location to accomodate an <code>Inset</code>.
371 Dimension size = component.getSize();
375 double width = size.getWidth();
376 double height = size
[all...]
/solaris-userland-s11u3/components/apache2/mod_sed/
H A Dmod_sed.c135 int size = ctx->curoutbuf - ctx->outbuf; local
138 if ((ctx->outbuf == NULL) || (size <=0))
140 out = apr_palloc(ctx->tpool, size);
141 memcpy(out, ctx->outbuf, size);
142 status = append_bucket(ctx, out, size);
173 /* if size is bigger than the allocated buffer directly add to output
H A Dregexp.h62 int size; member in struct:_step_vars_storage
102 #define SEDERR_TSNTSS "transform strings not the same size: %s"
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/
H A Dkr_vmstat.c297 safe_zalloc(void **ptr, int size, int free_first) argument
301 if ((*ptr = (void *) malloc(size)) == NULL)
303 (void) memset(*ptr, 0, size);
H A Dkr_iostat.c580 safe_zalloc(void **ptr, int size, int free_first) argument
584 if ((*ptr = (void *)malloc(size)) == NULL)
586 (void) memset(*ptr, 0, size);
H A DhealthMonitor.c2321 * any; statusOID - The trapoid; size - The size of trapoid (not included in
2328 send_trap(u_char * hostname, u_char * modulename, u_char * moduleContext, oid * trapoid, int size, u_char * status, u_char * description, u_char * dvalue, int dtype) argument
2407 * size in bytes = oid length * sizeof(oid)
2428 * size in bytes = oid length * sizeof(oid)
2444 * size in bytes = oid length * sizeof(oid)
2460 * size in bytes = oid length * sizeof(oid)
2462 size * sizeof(oid));
2476 * size in bytes = oid length * sizeof(oid)
2492 * size i
2598 int size; local
2678 int size; local
2780 int size; local
2881 int size; local
2976 int size; local
3076 int size; local
3187 int size; local
[all...]
/solaris-userland-s11u3/components/net-snmp/sun/sdk/demo/demo_module_4/
H A Dme4LoadGroup.c356 send_trap(u_char * hostname, u_char * modulename, oid * trapoid, int size, u_char * status, u_char * description) argument
422 * size in bytes = oid length * sizeof(oid)
443 * size in bytes = oid length * sizeof(oid)
459 * size in bytes = oid length * sizeof(oid)
475 * size in bytes = oid length * sizeof(oid)
477 size * sizeof(oid));
491 * size in bytes = oid length * sizeof(oid)
507 * size in bytes = oid length * sizeof(oid)
544 int size; local
558 size
592 int size; local
637 int size; local
[all...]
/solaris-userland-s11u3/components/proftpd/
H A Dmod_solaris_audit.c122 how = "couldn't determine maximum size of password buffer";
463 size_t size = 0; local
466 event = (adt_event_data_t*)pr_table_remove(cmd->notes, EVENT_KEY, &size);
473 if (size != sizeof(*event)) {
474 how = "bad event size";
/solaris-userland-s11u3/components/jansson/doc/html/_static/
H A Dunderscore.js17 c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){return!a?[]:a.toArray?a.toArray():b.isArray(a)?i.call(a):b.isArguments(a)?i.call(a):b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=b.head=function(a,b,d){return b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return i.call(a,0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest=
/solaris-userland-s11u3/components/open-fabrics/libibverbs/
H A Dsolaris_compatibility.c449 fprintf(stderr, "dev %d: exceeds umad cache size\n", dev_num);
890 infiniband_verbs(char *path, char *buf, size_t size) argument
962 infiniband_ports(char *path, char *buf, size_t size, char *dev_name) argument
1159 infiniband(char *path, char *buf, size_t size) argument
1171 len = infiniband_ports(path, buf, size, dev_name);
1200 infiniband_mad(char *path, char *buf, size_t size) argument
1234 size) + 1;
1255 sol_read_sysfs_file(char *path, char *buf, size_t size) argument
1282 len = infiniband_verbs(path, buf, size);
1284 len = infiniband(path, buf, size);
[all...]
/solaris-userland-s11u3/components/libusb/ugen/src/
H A Dlibusbugen.c72 static void usb_dump_data(char *data, int size);
78 static int usb_do_io(int fd, int stat_fd, char *data, size_t size, int flag);
80 int value, int index, char *data, int size);
441 int value, int index, char *data, int size, int timeout)
450 if ((hdl == NULL) || (size < 0)) {
463 requesttype, request, value, index, data, size);
477 if ((size) && (requesttype & USB_DEV_REQ_DEV_TO_HOST)) {
479 info->ep_status_fd[0], data, size, READ);
498 usb_bulk_write(usb_dev_handle *dev, int ep, char *data, int size, argument
508 if ((hdl == NULL) || (data == NULL) || (size <
440 usb_control_msg(usb_dev_handle *dev, int requesttype, int request, int value, int index, char *data, int size, int timeout) argument
540 usb_bulk_read(usb_dev_handle *dev, int ep, char *data, int size, int timeout) argument
585 usb_interrupt_write(usb_dev_handle *dev, int ep, char *data, int size, int timeout) argument
628 usb_interrupt_read(usb_dev_handle *dev, int ep, char *data, int size, int timeout) argument
786 usb_get_descriptor_by_endpoint(usb_dev_handle *udev, int ep, uchar_t type, uchar_t index, void *buf, int size) argument
805 usb_get_descriptor(usb_dev_handle *udev, uchar_t type, uchar_t index, void *buf, int size) argument
1200 usb_send_msg(int fd, int stat_fd, int requesttype, int request, int value, int index, char *data, int size) argument
1254 usb_do_io(int fd, int stat_fd, char *data, size_t size, int flag) argument
3002 usb_dump_data(char *data, int size) argument
[all...]

Completed in 180 milliseconds

12