Searched defs:virtual (Results 1 - 7 of 7) sorted by relevance
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
| H A D | Application.java | 117 * represents the virtual status of this application object 119 private boolean virtual = false; field in class:Application 1312 * if this application object is virtual, return the standalone 1320 // this is an error, the application is virtual, 1509 * Sets the virtual status of this application. 1513 * @param virtual new value of this application's virtaul status 1515 public void setVirtual(boolean virtual) { argument 1516 this.virtual = virtual; 1520 * Returns the virtual statu [all...] |
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/ |
| H A D | SSIExternalResolver.java | 108 public long getFileSize(String path, boolean virtual) throws IOException; argument 111 public long getFileLastModified(String path, boolean virtual) argument 115 public String getFileText(String path, boolean virtual) throws IOException; argument
|
| H A D | SSIMediator.java | 194 public long getFileSize(String path, boolean virtual) throws IOException { argument 195 return ssiExternalResolver.getFileSize(path, virtual); 199 public long getFileLastModified(String path, boolean virtual) argument 201 return ssiExternalResolver.getFileLastModified(path, virtual); 205 public String getFileText(String path, boolean virtual) throws IOException { argument 206 return ssiExternalResolver.getFileText(path, virtual);
|
| H A D | SSIServletExternalResolver.java | 433 throw new IOException("A non-virtual path can't be absolute: " 437 throw new IOException("A non-virtual path can't contain '../' : " 493 String originalPath, boolean virtual) throws IOException { 497 + originalPath + ", " + virtual + ")", null); 499 if (virtual) { 509 boolean virtual) throws IOException { 511 virtual); 523 public long getFileLastModified(String path, boolean virtual) argument 527 URLConnection urlConnection = getURLConnection(path, virtual); 536 public long getFileSize(String path, boolean virtual) throw argument 492 getServletContextAndPath( String originalPath, boolean virtual) argument 508 getURLConnection(String originalPath, boolean virtual) argument 551 getFileText(String originalPath, boolean virtual) argument [all...] |
| /illumos-gate/usr/src/lib/libshell/common/edit/ |
| H A D | vi.c | 77 # define isblank(v) _isblank(virtual[v]) 78 # define isalph(v) _isalph(virtual[v]) 79 # define ismetach(v) _ismetach(virtual[v]) 85 # define isalph(v) ((_c=virtual[v])=='_'||isalnum(_c)) 87 # define isblank(v) isspace(virtual[v]) 88 # define ismetach(v) ismeta(virtual[v]) 120 int ocur_virt; /* old last virtual position */ 122 int o_v_char; /* prev virtual[ocur_virt] */ 126 int U_saved; /* original virtual saved */ 146 #define cur_virt editb.e_cur /* current virtual colum 166 #define virtual macro [all...] |
| /illumos-gate/usr/src/cmd/lvm/metassist/layout/ |
| H A D | layout_device_cache.c | 114 boolean_t virtual; member in struct:__anon837 728 * create "virtual" objects to represent devices that 733 * be used by layout to access the virtual devices as 751 dfp->virtual = B_TRUE; 828 /* don't return virtual slice descriptors to libdiskmgt */ 837 dfp->virtual = B_FALSE; 877 if (dfp->virtual == B_FALSE) {
|
| H A D | layout_device_util.c | 567 * on the disk, or virtual slices which will exist when the 576 boolean_t virtual = B_FALSE; local 582 if ((error = disk_has_virtual_slices(disk, &virtual)) != 0) { 586 if (virtual == B_TRUE) { 775 * SIDEEFFECT: populates the private of virtual slices. 780 * PURPOSE: Helper which creates virtual slices for each disk which 786 * For the resulting slices, create virtual slice descriptors 933 * INPUT: name - the name of the new virtual slice 943 * represent a new virtual slice. 950 * adds an entry to the list of all virtual slice [all...] |
Completed in 104 milliseconds