Searched defs:rlp (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DIOUtil.c127 struct rlimit rlp; local
128 if (getrlimit(RLIMIT_NOFILE, &rlp) < 0) {
132 if (rlp.rlim_max < 0 || rlp.rlim_max > java_lang_Integer_MAX_VALUE) {
135 return (jint)rlp.rlim_max;
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DUnixOperatingSystem_md.c444 struct rlimit rlp; local
446 if (getrlimit(RLIMIT_NOFILE, &rlp) == -1) {
450 return (jlong) rlp.rlim_cur;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXPathParser.java1084 public RelativeLocationPath insertStep(Step step, RelativeLocationPath rlp) { argument
1085 if (rlp instanceof Step) {
1086 return new ParentLocationPath(step, (Step) rlp);
1088 else if (rlp instanceof ParentLocationPath) {
1089 final ParentLocationPath plp = (ParentLocationPath) rlp;
1095 return rlp;
2034 Expression rlp = (Expression)((com.sun.java_cup.internal.runtime.Symbol) CUP$XPathParser$stack.elementAt(CUP$XPathParser$top-0)).value;
2041 if (rlp instanceof Step &&
2042 parser.isElementAxis(((Step) rlp).getAxis()))
2048 (RelativeLocationPath) rlp));
[all...]

Completed in 39 milliseconds