Searched refs:method (Results 1 - 4 of 4) sorted by relevance

/system/vold/
H A DVolumeManager.h83 int shareVolume(const char *label, const char *method);
84 int unshareVolume(const char *label, const char *method);
85 int shareEnabled(const char *path, const char *method, bool *enabled);
H A DVolumeManager.cpp899 int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) { argument
907 if (strcmp(method, "ums")) {
920 int VolumeManager::shareVolume(const char *label, const char *method) { argument
933 if (strcmp(method, "ums")) {
998 int VolumeManager::unshareVolume(const char *label, const char *method) { argument
1006 if (strcmp(method, "ums")) {
/system/media/mca/filterfw/jni/
H A Djni_util.cpp137 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "booleanValue", "()Z"); local
138 result = MakeIntValue(env->CallBooleanMethod(object, method) == JNI_TRUE ? 1 : 0);
140 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "intValue", "()I"); local
141 result = MakeIntValue(env->CallIntMethod(object, method));
143 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "floatValue", "()F"); local
144 result = MakeFloatValue(env->CallFloatMethod(object, method));
/system/core/adb/
H A Dsysdeps_win32.c260 DWORD method; local
265 case SEEK_SET: method = FILE_BEGIN; break;
266 case SEEK_CUR: method = FILE_CURRENT; break;
267 case SEEK_END: method = FILE_END; break;
273 result = SetFilePointer( f->fh_handle, pos, NULL, method );

Completed in 118 milliseconds