代码搜索:Invoke
找到约 4,823 项符合「Invoke」的源代码
代码结果 4,823
www.eeworm.com/read/470693/1465274
java invoke.java
// Test to make sure the minimal invocation works.
public class invoke
{
public static native int val ();
static
{
System.out.println ("trying...");
System.loadLibrary ("invoke");
www.eeworm.com/read/470693/1465289
c invoke.c
#include
JNIEXPORT jint JNICALL
Java_invoke_val (JNIEnv *env, jclass klass)
{
return 23;
}
www.eeworm.com/read/461822/1550854
java invoke.java
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding c
www.eeworm.com/read/247586/4480709
c invoke.c
#include
#define PATH_SEPARATOR ';' /* define it to be ':' on Solaris */
#define USER_CLASSPATH "." /* where Prog.class is */
int main() {
JNIEnv *env;
JavaVM *jvm;
jint res;
www.eeworm.com/read/244180/4512541
asm invoke.asm
;-------------------------------------------------------------------------------
; colibrary procedure Invoke_
;
; -------------------------------------------------------
; This procedure was wr
www.eeworm.com/read/236296/4642003
asm invoke.asm
;-------------------------------------------------------------------------------
; colibrary procedure Invoke_
;
; -------------------------------------------------------
; This procedure was wr
www.eeworm.com/read/233448/4687739
java invoke.java
// Test to make sure the minimal invocation works.
public class invoke
{
public static native int val ();
static
{
System.out.println ("trying...");
System.loadLibrary ("invoke");