Searched refs:rlp (Results 1 - 4 of 4) 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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A Dxpath.cup273 public RelativeLocationPath insertStep(Step step, RelativeLocationPath rlp) {
274 if (rlp instanceof Step) {
275 return new ParentLocationPath(step, (Step) rlp);
277 else if (rlp instanceof ParentLocationPath) {
278 final ParentLocationPath plp = (ParentLocationPath) rlp;
284 return rlp;
574 | FilterExpr:fexp SLASH RelativeLocationPath:rlp
575 {: RESULT = new FilterParentPath(fexp, rlp); :}
577 | FilterExpr:fexp DSLASH RelativeLocationPath:rlp
584 if (rlp instanceo
[all...]
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...]
/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;

Completed in 40 milliseconds