Home
last modified time | relevance | path

Searched refs:clazz (Results 1 – 6 of 6) sorted by relevance

/system/core/libcutils/
Diosched_policy.c34 int android_set_ioprio(int pid __android_unused, IoSchedClass clazz __android_unused, int ioprio __… in android_set_ioprio()
36 if (syscall(SYS_ioprio_set, IOPRIO_WHO_PROCESS, pid, ioprio | (clazz << IOPRIO_CLASS_SHIFT))) { in android_set_ioprio()
43 int android_get_ioprio(int pid __android_unused, IoSchedClass *clazz, int *ioprio) { in android_get_ioprio() argument
51 *clazz = (rc >> IOPRIO_CLASS_SHIFT); in android_get_ioprio()
54 *clazz = IoSchedClass_NONE; in android_get_ioprio()
/system/core/include/cutils/
Diosched_policy.h31 extern int android_set_ioprio(int pid, IoSchedClass clazz, int ioprio);
32 extern int android_get_ioprio(int pid, IoSchedClass *clazz, int *ioprio);
/system/core/include/nativebridge/
Dnative_bridge.h192 uint32_t (*getNativeMethodCount)(JNIEnv* env, jclass clazz);
204 uint32_t (*getNativeMethods)(JNIEnv* env, jclass clazz, JNINativeMethod* methods,
/system/tools/aidl/
Dast_java.cpp112 : object(o), clazz(NULL), name(n) {} in FieldVariable()
115 : object(NULL), clazz(c), name(n) {} in FieldVariable()
120 } else if (this->clazz != NULL) { in Write()
121 to->Write("%s", this->clazz->JavaType().c_str()); in Write()
176 MethodCall::MethodCall(const Type* t, const string& n) : clazz(t), name(n) {} in MethodCall()
187 : clazz(t), name(n) { in MethodCall()
205 } else if (this->clazz != NULL) { in Write()
206 to->Write("%s.", this->clazz->JavaType().c_str()); in Write()
492 std::unique_ptr<Class> clazz) in Document() argument
496 clazz_(std::move(clazz)) { in Document()
Dast_java.h102 const Type* clazz; member
106 FieldVariable(const Type* clazz, const std::string& name);
162 const Type* clazz = nullptr; member
170 MethodCall(const Type* clazz, const std::string& name);
172 MethodCall(const Type* clazz, const std::string& name, int argc, ...);
361 std::unique_ptr<Class> clazz);
/system/core/adb/
Dsysdeps_win32.cpp176 FHClass clazz; member
237 _fh_alloc( FHClass clazz ) in _fh_alloc() argument
244 if (_win32_fhs[i].clazz == NULL) { in _fh_alloc()
254 f->clazz = clazz; in _fh_alloc()
258 clazz->_fh_init(f); in _fh_alloc()
278 f->clazz->_fh_close( f ); in _fh_close()
282 f->clazz = NULL; in _fh_close()
498 return f->clazz->_fh_read( f, buf, len ); in adb_read()
510 return f->clazz->_fh_write(f, buf, len); in adb_write()
522 return f->clazz->_fh_lseek(f, pos, where); in adb_lseek()
[all …]