Searched refs:targetAttrs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DAttrFilter.java40 public boolean check(Attributes targetAttrs) throws NamingException; argument
H A DLazySearchEnumerationImpl.java139 Attributes targetAttrs;
144 targetAttrs = ((DirContext)(obj)).getAttributes("");
145 if (filter.check(targetAttrs)) {
156 nm, context, env, targetAttrs);
168 SearchFilter.selectAttributes(targetAttrs,
H A DSearchFilter.java71 // Returns true if targetAttrs passes the filter
72 public boolean check(Attributes targetAttrs) throws NamingException { argument
73 if (targetAttrs == null)
76 return rootFilter.check(targetAttrs);
224 public boolean check(Attributes targetAttrs) throws NamingException { argument
227 if(filter.check(targetAttrs) != this.polarity) {
246 public boolean check(Attributes targetAttrs) throws NamingException { argument
247 return !filter.check(targetAttrs);
332 public boolean check(Attributes targetAttrs) { argument
336 Attribute attr = targetAttrs
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java93 WindowsFileAttributes targetAttrs = null;
114 targetAttrs = WindowsFileAttributes.readAttributes(targetHandle);
117 if (WindowsFileAttributes.isSameFile(sourceAttrs, targetAttrs)) {
147 if (targetAttrs != null) {
149 if (targetAttrs.isDirectory() || targetAttrs.isDirectoryLink()) {
155 if (targetAttrs.isDirectory()) {
312 WindowsFileAttributes targetAttrs = null;
333 targetAttrs = WindowsFileAttributes.readAttributes(targetHandle);
336 if (WindowsFileAttributes.isSameFile(sourceAttrs, targetAttrs)) {
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixCopyFile.java397 UnixFileAttributes targetAttrs = null;
408 targetAttrs = UnixFileAttributes.get(target, false);
412 boolean targetExists = (targetAttrs != null);
419 if (sourceAttrs.isSameFile(targetAttrs))
428 if (targetAttrs.isDirectory()) {
435 if (targetAttrs.isDirectory() &&
514 UnixFileAttributes targetAttrs = null;
530 targetAttrs = UnixFileAttributes.get(target, false);
534 boolean targetExists = (targetAttrs != null);
541 if (sourceAttrs.isSameFile(targetAttrs))
[all...]

Completed in 32 milliseconds