Searched defs:functionName (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathFunctionResolver.java50 * <p>If <code>functionName</code> or <code>arity</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
52 * @param functionName The function name.
55 * @return The function or <code>null</code> if no function named <code>functionName</code> with <code>arity</code> arguments exists.
57 * @throws NullPointerException If <code>functionName</code> or <code>arity</code> is <code>null</code>.
59 public XPathFunction resolveFunction(QName functionName, int arity); argument
/libcore/luni/src/main/java/android/system/
H A DErrnoException.java29 private final String functionName; field in class:ErrnoException
39 public ErrnoException(String functionName, int errno) { argument
40 this.functionName = functionName;
47 public ErrnoException(String functionName, int errno, Throwable cause) { argument
49 this.functionName = functionName;
64 return functionName + " failed: " + errnoName + " (" + description + ")";
H A DGaiException.java30 private final String functionName; field in class:GaiException
40 public GaiException(String functionName, int error) { argument
41 this.functionName = functionName;
48 public GaiException(String functionName, int error, Throwable cause) { argument
50 this.functionName = functionName;
65 return functionName + " failed: " + gaiName + " (" + description + ")";
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp219 const char* functionName, int error) {
226 ScopedLocalRef<jstring> detailMessage(env, env->NewStringUTF(functionName));
242 static void throwErrnoException(JNIEnv* env, const char* functionName) { argument
248 throwException(env, JniConstants::errnoExceptionClass, ctor3, ctor2, functionName, error);
251 static void throwGaiException(JNIEnv* env, const char* functionName, int error) { argument
263 throwErrnoException(env, functionName);
266 throwException(env, JniConstants::gaiExceptionClass, ctor3, ctor2, functionName, error);
2372 #define NATIVE_METHOD_OVERLOAD(className, functionName, signature, variant) \
2373 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName ## varian
218 throwException(JNIEnv* env, jclass exceptionClass, jmethodID ctor3, jmethodID ctor2, const char* functionName, int error) argument
[all...]

Completed in 88 milliseconds