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

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCustomFunction.java26 public final int numArgs; field in class:SQLiteCustomFunction
33 * @param numArgs The number of arguments for the function, or -1 to
37 public SQLiteCustomFunction(String name, int numArgs, argument
44 this.numArgs = numArgs;
H A DSQLiteDatabase.java835 * @param numArgs the number of arguments for the function
839 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
841 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
/frameworks/native/libs/binder/
H A DBpBinder.cpp150 const size_t numArgs = args.size(); local
151 send.writeInt32(numArgs);
152 for (size_t i = 0; i < numArgs; i++) {
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp60 jfieldID numArgs; member in struct:android::__anon994
251 jint numArgs = env->GetIntField(functionObj, gSQLiteCustomFunctionClassInfo.numArgs); local
256 int err = sqlite3_create_function_v2(connection->db, name, numArgs, SQLITE_UTF16,
866 GET_FIELD_ID(gSQLiteCustomFunctionClassInfo.numArgs, clazz,
867 "numArgs", "I");

Completed in 68 milliseconds