Searched defs:total (Results 1 - 5 of 5) sorted by relevance
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/ |
H A D | Timer.java | 64 long total; field in class:Timer.MethodDescriptor 76 long total; field in class:Timer.MethodCall 81 long total) { 85 this.total = total; 141 final long currentTotal = now - call.total; 153 current.total += currentTotal; 180 return (int)(((MethodDescriptor)o2).total 181 - ((MethodDescriptor)o1).total); 188 out.println("Timer : total 78 MethodCall(MethodDescriptor method, String message, long self, long total) argument [all...] |
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/ |
H A D | MutableTimeStatisticImpl.java | 58 private long total; //possibility of an overflow? field in class:MutableTimeStatisticImpl 73 total = initial.getTotalTime(); 75 final boolean minTot = min == total; 77 throw new IllegalArgumentException("Invalid initial values: " + min + ", " + max + ", " + total); 86 * <li> max time, min time and total time are accordingly adjusted </li> 92 total = max = min = current; 94 total += current; 113 total = initial.getTotalTime(); 127 this.total, 169 return ( this.total ); [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | MultipartStream.java | 773 private long total; field in class:MultipartStream.ItemInputStream 812 return total; 844 ++total; 875 total += res; 946 total += tail - head - pad;
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | zip_util.h | 118 #define ENDTOT(b) SH(b, 10) /* total number of entries */ 185 jint total; /* total number of entries */ member in struct:jzfile
|
H A D | zip_util.c | 132 for (i = 0; i < zip->total; i++) 281 zip->comments = calloc(zip->total, sizeof(char *)); 295 jint total, count, tablelen, i, tmplen; local 331 /* Get total number of central directory entries */ 332 total = zip->total = ENDTOT(endbuf); 333 if (total < 0 || total * CENHDR > cenlen) 338 if (total > ZIP_MAXENTRIES) 358 entries = zip->entries = calloc(total, sizeo [all...] |
Completed in 5682 milliseconds