/openjdk7/jdk/src/share/classes/javax/xml/crypto/ |
H A D | KeySelector.java | 50 * The purpose of the key that is to be selected. 59 * Returns a string representation of this purpose ("sign", 62 * @return a string representation of this purpose 93 * @param purpose the key's purpose ({@link Purpose#SIGN}, 115 public abstract KeySelectorResult select(KeyInfo keyInfo, Purpose purpose, argument 141 public KeySelectorResult select(KeyInfo keyInfo, Purpose purpose, argument
|
/openjdk7/jdk/test/javax/xml/crypto/dsig/ |
H A D | X509KeySelector.java | 113 * @param purpose the key's purpose 130 KeySelector.Purpose purpose, AlgorithmMethod method, 129 select(KeyInfo keyInfo, KeySelector.Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) argument
|
H A D | KeySelectors.java | 63 KeySelector.Purpose purpose, 96 KeySelector.Purpose purpose, 123 if ((purpose != KeySelector.Purpose.VERIFY) && 147 KeySelector.Purpose purpose, 277 KeySelector.Purpose purpose, 62 select(KeyInfo ki, KeySelector.Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) argument 95 select(KeyInfo keyInfo, KeySelector.Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) argument 146 select(KeyInfo keyInfo, KeySelector.Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) argument 276 select(KeyInfo keyInfo, KeySelector.Purpose purpose, AlgorithmMethod method, XMLCryptoContext context) argument
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | HttpCookie.java | 267 * Specifies a comment that describes a cookie's purpose. 272 * @param purpose a <code>String</code> specifying the comment 279 public void setComment(String purpose) { argument 280 comment = purpose; 287 * Returns the comment describing the purpose of this cookie, or 304 * Specifies a comment url that describes a cookie's purpose. 308 * @param purpose a <code>String</code> specifying the comment url 315 public void setCommentURL(String purpose) { argument 316 commentURL = purpose; 323 * Returns the comment url describing the purpose o [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1CollectedHeap.hpp | 299 PLABStats* stats_for_purpose(GCAllocPurpose purpose) { argument 302 switch (purpose) { 347 // Determines PLAB size for a particular allocation purpose. 348 size_t desired_plab_sz(GCAllocPurpose purpose); 602 HeapWord* par_allocate_during_gc(GCAllocPurpose purpose, size_t word_size); 604 HeapWord* allocate_during_gc_slow(GCAllocPurpose purpose, 1872 G1ParGCAllocBuffer* alloc_buffer(GCAllocPurpose purpose) { 1873 return _alloc_buffers[purpose]; 1898 HeapWord* allocate_slow(GCAllocPurpose purpose, size_t word_sz) { 1900 size_t gclab_word_size = _g1h->desired_plab_sz(purpose); [all...] |
H A D | g1CollectorPolicy.hpp | 889 inline bool track_object_age(GCAllocPurpose purpose) { argument 890 return purpose == GCAllocForSurvived; 895 uint max_regions(int purpose); 897 // The limit on regions for a particular purpose is reached. 898 void note_alloc_region_limit_reached(int purpose) { argument 899 if (purpose == GCAllocForSurvived) {
|
H A D | g1CollectorPolicy.cpp | 1385 uint G1CollectorPolicy::max_regions(int purpose) { argument 1386 switch (purpose) {
|
H A D | g1CollectedHeap.cpp | 4223 size_t G1CollectedHeap::desired_plab_sz(GCAllocPurpose purpose) argument 4226 switch (purpose) { 4450 HeapWord* G1CollectedHeap::par_allocate_during_gc(GCAllocPurpose purpose, argument 4452 if (purpose == GCAllocForSurvived) { 4462 assert(purpose == GCAllocForTenured, "sanity");
|
/openjdk7/jdk/src/share/native/sun/awt/libpng/ |
H A D | pngget.c | 729 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams, 735 && purpose != NULL && X0 != NULL && X1 != NULL && type != NULL && 738 *purpose = info_ptr->pcal_purpose; 728 png_get_pCAL(png_const_structp png_ptr, png_const_infop info_ptr, png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams, png_charp *units, png_charpp *params) argument
|
H A D | pngset.c | 265 png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type, 276 length = png_strlen(purpose) + 1; 277 png_debug1(3, "allocating purpose for info (%lu bytes)", 295 png_warning(png_ptr, "Insufficient memory for pCAL purpose"); 299 png_memcpy(info_ptr->pcal_purpose, purpose, length); 264 png_set_pCAL(png_structp png_ptr, png_infop info_ptr, png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams, png_const_charp units, png_charpp params) argument
|
H A D | pngtest.c | 1127 png_charp purpose, units; local 1132 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type, 1135 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
|
H A D | pngwutil.c | 1885 png_write_pCAL(png_structp png_ptr, png_charp purpose, png_int_32 X0, argument 1901 purpose_len = png_check_keyword(png_ptr, purpose, &new_purpose) + 1; 1902 png_debug1(3, "pCAL purpose length = %d", (int)purpose_len);
|