Searched refs:env (Results 226 - 250 of 1226) sorted by relevance

1234567891011>>

/external/chromium/testing/gtest/test/
H A Dgtest_environment_test.cc126 int RunAllTests(MyEnvironment* env, FailureType failure) { argument
127 env->Reset();
128 env->set_failure_in_set_up(failure);
141 MyEnvironment* const env = new MyEnvironment; local
142 Check(testing::AddGlobalTestEnvironment(env) == env,
147 Check(RunAllTests(env, NO_FAILURE) != 0,
153 Check(env->tear_down_was_run(),
158 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
164 Check(env
[all...]
/external/chromium_org/base/android/
H A Djni_array.h21 JNIEnv* env, const uint8* bytes, size_t len);
25 JNIEnv* env, const int* ints, size_t len);
28 JNIEnv* env, const std::vector<int>& ints);
32 JNIEnv* env, const int64* longs, size_t len);
35 JNIEnv* env, const std::vector<int64>& longs);
39 JNIEnv* env, const std::vector<std::string>& v);
42 JNIEnv* env, const std::vector<std::string>& v);
45 JNIEnv* env, const std::vector<string16>& v);
49 JNIEnv* env,
54 JNIEnv* env,
[all...]
H A Dscoped_java_ref_unittest.cc20 jobject NewGlobalRef(JNIEnv* env, jobject obj) { argument
22 return g_previous_functions->NewGlobalRef(env, obj);
25 void DeleteGlobalRef(JNIEnv* env, jobject obj) { argument
27 return g_previous_functions->DeleteGlobalRef(env, obj);
30 jobject NewLocalRef(JNIEnv* env, jobject obj) { argument
32 return g_previous_functions->NewLocalRef(env, obj);
35 void DeleteLocalRef(JNIEnv* env, jobject obj) { argument
37 return g_previous_functions->DeleteLocalRef(env, obj);
46 JNIEnv* env = AttachCurrentThread(); local
47 g_previous_functions = env
59 JNIEnv* env = AttachCurrentThread(); local
69 JNIEnv* env = AttachCurrentThread(); local
87 JNIEnv* env = AttachCurrentThread(); local
[all...]
H A Djni_array_unittest.cc17 JNIEnv* env = AttachCurrentThread(); local
18 ScopedJavaLocalRef<jbyteArray> bytes = ToJavaByteArray(env, kBytes, kLen);
22 JavaByteArrayToByteVector(env, bytes.obj(), &vec);
26 AppendJavaByteArrayToByteVector(env, bytes.obj(), &vec);
31 JNIEnv* env,
37 jsize java_array_len = env->GetArrayLength(ints.obj());
42 env->GetIntArrayRegion(ints.obj(), i, 1, &value);
51 JNIEnv* env = AttachCurrentThread(); local
52 CheckIntConversion(env, kInts, kLen, ToJavaIntArray(env, kInt
30 CheckIntConversion( JNIEnv* env, const int* int_array, const size_t len, const ScopedJavaLocalRef<jintArray>& ints) argument
58 CheckLongConversion( JNIEnv* env, const int64* long_array, const size_t len, const ScopedJavaLocalRef<jlongArray>& longs) argument
79 JNIEnv* env = AttachCurrentThread(); local
90 JNIEnv* env = AttachCurrentThread(); local
116 JNIEnv* env = AttachCurrentThread(); local
141 JNIEnv* env = AttachCurrentThread(); local
[all...]
H A Dimportant_file_writer_android.cc17 static jboolean WriteFileAtomically(JNIEnv* env, argument
25 base::android::ConvertJavaStringToUTF8(env, file_name, &native_file_name);
27 int data_length = env->GetArrayLength(data);
28 jbyte* native_data = env->GetByteArrayElements(data, NULL);
33 env->ReleaseByteArrayElements(data, native_data, JNI_ABORT);
37 bool RegisterImportantFileWriterAndroid(JNIEnv* env) { argument
38 return RegisterNativesImpl(env);
/external/chromium_org/base/android/jni_generator/
H A Dgolden_sample_for_tests_jni.h41 static jint Init(JNIEnv* env, jobject obj,
44 static jdouble GetDoubleFunction(JNIEnv* env, jobject obj);
46 static jfloat GetFloatFunction(JNIEnv* env, jclass clazz);
48 static void SetNonPODDatatype(JNIEnv* env, jobject obj,
51 static jobject GetNonPODDatatype(JNIEnv* env, jobject obj);
54 static void Destroy(JNIEnv* env, jobject obj, argument
58 return native->Destroy(env, obj);
61 static jint Method(JNIEnv* env, jobject obj, argument
65 return native->Method(env, obj);
68 static jdouble MethodOtherP0(JNIEnv* env, jobjec argument
76 AddStructB(JNIEnv* env, jobject obj, jint nativeCPPClass, jobject b) argument
84 IterateAndDoSomethingWithStructB(JNIEnv* env, jobject obj, jint nativeCPPClass) argument
92 Java_SampleForTests_javaMethod(JNIEnv* env, jobject obj, jint foo, jint bar) argument
117 Java_SampleForTests_staticJavaMethod(JNIEnv* env) argument
139 Java_SampleForTests_packagePrivateJavaMethod(JNIEnv* env, jobject obj) argument
161 Java_SampleForTests_methodThatThrowsException(JNIEnv* env, jobject obj) argument
182 Java_InnerStructA_create(JNIEnv* env, jlong l, jint i, jstring s) argument
210 Java_SampleForTests_addStructA(JNIEnv* env, jobject obj, jobject a) argument
233 Java_SampleForTests_iterateAndDoSomething(JNIEnv* env, jobject obj) argument
255 Java_InnerStructB_getKey(JNIEnv* env, jobject obj) argument
277 Java_InnerStructB_getValue(JNIEnv* env, jobject obj) argument
301 RegisterNativesImpl(JNIEnv* env) argument
[all...]
H A Dsample_for_tests.h28 jdouble MethodOtherP0(JNIEnv* env, jobject obj);
31 void Destroy(JNIEnv* env, jobject obj);
33 jint Method(JNIEnv* env, jobject obj);
35 void AddStructB(JNIEnv* env, jobject obj, jobject structb);
37 void IterateAndDoSomethingWithStructB(JNIEnv* env, jobject obj);
/external/chromium_org/chrome/browser/ui/android/autofill/
H A Dautofill_popup_view_android.cc26 JNIEnv* env = base::android::AttachCurrentThread(); local
32 env,
41 JNIEnv* env = base::android::AttachCurrentThread(); local
42 Java_AutofillPopupGlue_hide(env, java_object_.obj());
47 JNIEnv* env = base::android::AttachCurrentThread(); local
48 Java_AutofillPopupGlue_setAnchorRect(env,
59 Java_AutofillPopupGlue_createAutofillSuggestionArray(env, count);
63 base::android::ConvertUTF16ToJavaString(env, controller_->names()[i]);
65 base::android::ConvertUTF16ToJavaString(env,
68 env,
79 SuggestionSelected(JNIEnv* env, jobject obj, jint list_index) argument
85 RequestHide(JNIEnv* env, jobject obj) argument
92 RegisterAutofillPopupViewAndroid(JNIEnv* env) argument
[all...]
/external/chromium_org/chrome/browser/ui/android/
H A Dnavigation_popup.cc29 NavigationPopup::NavigationPopup(JNIEnv* env, jobject obj) argument
30 : weak_jobject_(env, obj) {
36 void NavigationPopup::Destroy(JNIEnv* env, jobject obj) { argument
40 void NavigationPopup::FetchFaviconForUrl(JNIEnv* env, argument
48 GURL url(base::android::ConvertJavaStringToUTF16(env, jurl));
70 JNIEnv* env = base::android::AttachCurrentThread(); local
71 ScopedJavaLocalRef<jobject> obj(weak_jobject_.get(env));
76 ConvertUTF8ToJavaString(env, navigation_entry_url.spec()));
79 env,
85 static jstring GetHistoryUrl(JNIEnv* env, jclas argument
89 Init(JNIEnv* env, jobject obj) argument
95 RegisterNavigationPopup(JNIEnv* env) argument
[all...]
/external/chromium_org/components/web_contents_delegate_android/
H A Dweb_contents_delegate_android.cc39 WebContentsDelegateAndroid::WebContentsDelegateAndroid(JNIEnv* env, jobject obj) argument
40 : weak_java_delegate_(env, obj) {
47 WebContentsDelegateAndroid::GetJavaDelegate(JNIEnv* env) const {
48 return weak_java_delegate_.get(env);
81 JNIEnv* env = AttachCurrentThread(); local
82 ScopedJavaLocalRef<jobject> obj = GetJavaDelegate(env);
89 JNIEnv* env = AttachCurrentThread(); local
91 ConvertUTF8ToJavaString(env, url.spec());
93 ConvertUTF8ToJavaString(env, params.extra_headers);
99 env,
120 JNIEnv* env = AttachCurrentThread(); local
131 JNIEnv* env = AttachCurrentThread(); local
144 JNIEnv* env = AttachCurrentThread(); local
158 JNIEnv* env = AttachCurrentThread(); local
169 JNIEnv* env = AttachCurrentThread(); local
177 JNIEnv* env = AttachCurrentThread(); local
185 JNIEnv* env = AttachCurrentThread(); local
203 JNIEnv* env = AttachCurrentThread(); local
263 JNIEnv* env = AttachCurrentThread(); local
273 JNIEnv* env = AttachCurrentThread(); local
283 JNIEnv* env = AttachCurrentThread(); local
298 JNIEnv* env = AttachCurrentThread(); local
308 JNIEnv* env = AttachCurrentThread(); local
353 RegisterWebContentsDelegateAndroid(JNIEnv* env) argument
[all...]
/external/chromium_org/content/shell/browser/
H A Dshell_android.cc39 JNIEnv* env = AttachCurrentThread(); local
40 ScopedJavaLocalRef<jstring> j_url = ConvertUTF8ToJavaString(env, url.spec());
41 Java_Shell_onUpdateUrl(env, java_object_.obj(), j_url.obj());
45 JNIEnv* env = AttachCurrentThread(); local
46 Java_Shell_setIsLoading(env, java_object_.obj(), loading);
54 JNIEnv* env = AttachCurrentThread(); local
56 env, java_object_.obj(), reinterpret_cast<intptr_t>(web_contents()));
68 JNIEnv* env = AttachCurrentThread(); local
69 Java_Shell_onLoadProgressChanged(env, java_object_.obj(), progress);
74 JNIEnv* env local
81 JNIEnv* env = AttachCurrentThread(); local
92 Register(JNIEnv* env) argument
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_environment_test.cc127 int RunAllTests(MyEnvironment* env, FailureType failure) { argument
128 env->Reset();
129 env->set_failure_in_set_up(failure);
142 MyEnvironment* const env = new MyEnvironment; local
143 Check(testing::AddGlobalTestEnvironment(env) == env,
148 Check(RunAllTests(env, NO_FAILURE) != 0,
154 Check(env->tear_down_was_run(),
159 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
165 Check(env
[all...]
/external/gtest/test/
H A Dgtest_environment_test.cc126 int RunAllTests(MyEnvironment* env, FailureType failure) { argument
127 env->Reset();
128 env->set_failure_in_set_up(failure);
141 MyEnvironment* const env = new MyEnvironment; local
142 Check(testing::AddGlobalTestEnvironment(env) == env,
147 Check(RunAllTests(env, NO_FAILURE) != 0,
153 Check(env->tear_down_was_run(),
158 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
164 Check(env
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_joints_motors_RotationalLimitMotor.cpp49 (JNIEnv *env, jobject object, jlong motorId) {
52 jclass newExc = env->FindClass("java/lang/NullPointerException");
53 env->ThrowNew(newExc, "The native object does not exist.");
65 (JNIEnv *env, jobject object, jlong motorId, jfloat value) {
68 jclass newExc = env->FindClass("java/lang/NullPointerException");
69 env->ThrowNew(newExc, "The native object does not exist.");
81 (JNIEnv *env, jobject object, jlong motorId) {
84 jclass newExc = env->FindClass("java/lang/NullPointerException");
85 env->ThrowNew(newExc, "The native object does not exist.");
97 (JNIEnv *env, jobjec
48 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getLoLimit(JNIEnv *env, jobject object, jlong motorId) argument
64 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setLoLimit(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
80 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getHiLimit(JNIEnv *env, jobject object, jlong motorId) argument
96 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setHiLimit(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
112 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getTargetVelocity(JNIEnv *env, jobject object, jlong motorId) argument
128 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setTargetVelocity(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
144 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getMaxMotorForce(JNIEnv *env, jobject object, jlong motorId) argument
160 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setMaxMotorForce(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
176 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getMaxLimitForce(JNIEnv *env, jobject object, jlong motorId) argument
192 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setMaxLimitForce(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
208 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getDamping(JNIEnv *env, jobject object, jlong motorId) argument
224 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setDamping(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
240 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getLimitSoftness(JNIEnv *env, jobject object, jlong motorId) argument
256 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setLimitSoftness(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
272 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getERP(JNIEnv *env, jobject object, jlong motorId) argument
288 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setERP(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
304 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_getBounce(JNIEnv *env, jobject object, jlong motorId) argument
320 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setBounce(JNIEnv *env, jobject object, jlong motorId, jfloat value) argument
336 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_isEnableMotor(JNIEnv *env, jobject object, jlong motorId) argument
352 Java_com_jme3_bullet_joints_motors_RotationalLimitMotor_setEnableMotor(JNIEnv *env, jobject object, jlong motorId, jboolean value) argument
[all...]
H A Dcom_jme3_bullet_joints_SixDofJoint.cpp49 (JNIEnv * env, jobject object, jlong jointId, jint index) {
52 jclass newExc = env->FindClass("java/lang/NullPointerException");
53 env->ThrowNew(newExc, "The native object does not exist.");
65 (JNIEnv * env, jobject object, jlong jointId) {
68 jclass newExc = env->FindClass("java/lang/NullPointerException");
69 env->ThrowNew(newExc, "The native object does not exist.");
81 (JNIEnv * env, jobject object, jlong jointId, jobject vector) {
84 jclass newExc = env->FindClass("java/lang/NullPointerException");
85 env->ThrowNew(newExc, "The native object does not exist.");
89 jmeBulletUtil::convert(env, vecto
48 Java_com_jme3_bullet_joints_SixDofJoint_getRotationalLimitMotor(JNIEnv * env, jobject object, jlong jointId, jint index) argument
64 Java_com_jme3_bullet_joints_SixDofJoint_getTranslationalLimitMotor(JNIEnv * env, jobject object, jlong jointId) argument
80 Java_com_jme3_bullet_joints_SixDofJoint_setLinearUpperLimit(JNIEnv * env, jobject object, jlong jointId, jobject vector) argument
98 Java_com_jme3_bullet_joints_SixDofJoint_setLinearLowerLimit(JNIEnv * env, jobject object, jlong jointId, jobject vector) argument
116 Java_com_jme3_bullet_joints_SixDofJoint_setAngularUpperLimit(JNIEnv * env, jobject object, jlong jointId, jobject vector) argument
134 Java_com_jme3_bullet_joints_SixDofJoint_setAngularLowerLimit(JNIEnv * env, jobject object, jlong jointId, jobject vector) argument
152 Java_com_jme3_bullet_joints_SixDofJoint_createJoint(JNIEnv * env, jobject object, jlong bodyIdA, jlong bodyIdB, jobject pivotA, jobject rotA, jobject pivotB, jobject rotB, jboolean useLinearReferenceFrameA) argument
[all...]
H A DjmeBulletUtil.h42 static void convert(JNIEnv* env, jobject in, btVector3* out);
43 static void convert(JNIEnv* env, const btVector3* in, jobject out);
44 static void convert(JNIEnv* env, jobject in, btMatrix3x3* out);
45 static void convert(JNIEnv* env, const btMatrix3x3* in, jobject out);
46 static void convertQuat(JNIEnv* env, jobject in, btMatrix3x3* out);
47 static void convertQuat(JNIEnv* env, const btMatrix3x3* in, jobject out);
48 static void addResult(JNIEnv* env, jobject resultlist, const btVector3 hitnormal,const btVector3 m_hitPointWorld,const btScalar m_hitFraction,btCollisionObject* hitobject);
/external/chromium/base/nix/
H A Dxdg_util.h33 FilePath GetXDGDirectory(Environment* env, const char* env_name,
39 FilePath GetXDGUserDirectory(Environment* env, const char* dir_name,
56 DesktopEnvironment GetDesktopEnvironment(Environment* env);
60 const char* GetDesktopEnvironmentName(DesktopEnvironment env);
62 const char* GetDesktopEnvironmentName(Environment* env);
/external/chromium_org/android_webview/lib/main/
H A Dwebview_entry_point.cc27 JNIEnv* env = base::android::AttachCurrentThread(); local
28 if (!content::RegisterLibraryLoaderEntryHook(env))
33 if (!content::EnsureJniRegistered(env))
38 env,
43 if (!android_webview::RegisterJni(env))
/external/chromium_org/base/test/
H A Dtest_file_util_android.cc14 bool RegisterContentUriTestUtils(JNIEnv* env) { argument
15 return RegisterNativesImpl(env);
19 JNIEnv* env = base::android::AttachCurrentThread(); local
21 base::android::ConvertUTF8ToJavaString(env, path.value());
24 env, base::android::GetApplicationContext(), j_path.obj());
/external/chromium_org/content/browser/android/
H A Dtracing_controller_android.h17 TracingControllerAndroid(JNIEnv* env, jobject obj);
18 void Destroy(JNIEnv* env, jobject obj);
20 bool StartTracing(JNIEnv* env,
25 void StopTracing(JNIEnv* env, jobject obj);
39 bool RegisterTracingControllerAndroid(JNIEnv* env);
/external/valgrind/main/VEX/priv/
H A Dhost_s390_isel.c170 addInstr(ISelEnv *env, s390_insn *insn) argument
172 addHInstr(env->code, insn);
193 lookupIRTemp(ISelEnv *env, IRTemp tmp) argument
195 vassert(tmp < env->n_vregmap);
196 vassert(env->vregmap[tmp] != INVALID_HREG);
198 return env->vregmap[tmp];
204 lookupIRTemp128(HReg *hi, HReg *lo, ISelEnv *env, IRTemp tmp) argument
206 vassert(tmp < env->n_vregmap);
207 vassert(env->vregmapHI[tmp] != INVALID_HREG);
209 *lo = env
216 newVRegI(ISelEnv *env) argument
227 newVRegF(ISelEnv *env) argument
288 s390_isel_amode_wrk(ISelEnv *env, IRExpr *expr) argument
324 s390_isel_amode(ISelEnv *env, IRExpr *expr) argument
452 doHelperCall(ISelEnv *env, Bool passBBP, IRExpr *guard, IRCallee *callee, IRExpr **args, HReg dst) argument
570 convert_s390_fpcc_to_vex(ISelEnv *env, HReg cc_s390) argument
607 s390_isel_int128_expr_wrk(HReg *dst_hi, HReg *dst_lo, ISelEnv *env, IRExpr *expr) argument
751 s390_isel_int128_expr(HReg *dst_hi, HReg *dst_lo, ISelEnv *env, IRExpr *expr) argument
784 s390_isel_int_expr_wrk(ISelEnv *env, IRExpr *expr) argument
1436 s390_isel_int_expr(ISelEnv *env, IRExpr *expr) argument
1449 s390_isel_int_expr_RMI(ISelEnv *env, IRExpr *expr) argument
1493 s390_isel_float128_expr_wrk(HReg *dst_hi, HReg *dst_lo, ISelEnv *env, IRExpr *expr) argument
1707 s390_isel_float128_expr(HReg *dst_hi, HReg *dst_lo, ISelEnv *env, IRExpr *expr) argument
1724 s390_isel_float_expr_wrk(ISelEnv *env, IRExpr *expr) argument
1985 s390_isel_float_expr(ISelEnv *env, IRExpr *expr) argument
2003 s390_isel_cc(ISelEnv *env, IRExpr *cond) argument
2214 s390_isel_stmt(ISelEnv *env, IRStmt *stmt) argument
2632 iselNext(ISelEnv *env, IRExpr *next, IRJumpKind jk, int offsIP) argument
2726 ISelEnv *env; local
[all...]
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/manifest/
H A Dnacl.scons6 Import('env')
9 env.FilterOut(CFLAGS=['-pedantic'])
10 env.FilterOut(CCFLAGS=['-pedantic'])
11 env.Replace(TEST_DIR='${SOURCE_ROOT}/ppapi/native_client/tests/ppapi_browser/' +
14 manifest_good_sources = env.ComponentObject('manifest_good.cc'),
16 manifest_good_target = env.ProgramNameForNmf('manifest_good')
17 env.ComponentProgram(manifest_good_target,
25 manifest_bad_sources = env.ComponentObject('manifest_bad.cc'),
27 manifest_bad_target = env.ProgramNameForNmf('manifest_bad')
28 env
[all...]
/external/chromium_org/testing/
H A Dtest_env.py1 #!/usr/bin/env python
36 def enable_sandbox_if_required(env, verbose=False):
38 chrome_sandbox_path = env.get(CHROME_SANDBOX_ENV, CHROME_SANDBOX_PATH)
44 env[CHROME_SANDBOX_ENV] = chrome_sandbox_path
51 if env.get(CHROME_SANDBOX_ENV):
52 env.pop(CHROME_SANDBOX_ENV)
65 def run_executable(cmd, env):
73 env['LANG'] = 'en_US.UTF-8'
76 env.pop('CR_SOURCE_ROOT', None)
77 enable_sandbox_if_required(env)
[all...]
/external/qemu/
H A Dkqemu.c52 # define LOG_INT_STATE(env) log_cpu_state_mask(CPU_LOG_INT, (env), 0)
55 # define LOG_INT_STATE(env) do { } while (0)
126 static void kqemu_update_cpuid(CPUState *env) argument
154 env->cpuid_features = (env->cpuid_features & ~critical_features_mask) |
156 env->cpuid_ext_features = (env->cpuid_ext_features & ~ext_features_mask) |
163 int kqemu_init(CPUState *env) argument
244 kqemu_update_cpuid(env);
253 kqemu_flush_page(CPUState *env, target_ulong addr) argument
262 kqemu_flush(CPUState *env, int global) argument
268 kqemu_set_notdirty(CPUState *env, ram_addr_t ram_addr) argument
293 kqemu_modify_page(CPUState *env, ram_addr_t ram_addr) argument
404 restore_native_fp_frstor(CPUState *env) argument
429 save_native_fp_fsave(CPUState *env) argument
454 restore_native_fp_fxrstor(CPUState *env) argument
480 save_native_fp_fxsave(CPUState *env) argument
510 do_syscall(CPUState *env, struct kqemu_cpu_state *kenv) argument
691 kqemu_cpu_exec(CPUState *env) argument
916 kqemu_cpu_interrupt(CPUState *env) argument
956 CPUState *env; local
969 CPUState *env; local
[all...]
/external/chromium/third_party/libjingle/source/talk/site_scons/
H A Dtalk.py13 def _GenericLibrary(env, static, **kwargs):
18 env: The environment object.
25 return ExtendComponent(env, 'ComponentLibrary', **params)
28 def Library(env, **kwargs):
33 env: The current environment.
39 return _GenericLibrary(env, True, **kwargs)
42 def DynamicLibrary(env, **kwargs):
47 env: The environment object.
53 return _GenericLibrary(env, False, **kwargs)
56 def Object(env, **kwarg
[all...]

Completed in 680 milliseconds

1234567891011>>