search for: jclass

Displaying 10 results from an estimated 10 matches for "jclass".

Did you mean: class
2008 May 29
0
Again, teach me speex AEC please!
...ed in my Voip program, so it should be async by nature. /** * com_peterhi_Speex.h */ #include <jni.h> #ifndef _Included_com_peterhi_Speex #define _Included_com_peterhi_Speex #ifdef __cplusplus extern "C" { #endif JNIEXPORT jint JNICALL Java_com_peterhi_Speex_encoder__(JNIEnv *, jclass); JNIEXPORT jint JNICALL Java_com_peterhi_Speex_decoder__(JNIEnv *, jclass); JNIEXPORT void JNICALL Java_com_peterhi_Speex_encoder__I(JNIEnv *, jclass, jint); JNIEXPORT void JNICALL Java_com_peterhi_Speex_decoder__I(JNIEnv *, jclass, jint); JNIEXPORT jint JNICALL Java_com_peterhi_Speex_encode(JNIEn...
2002 Aug 15
0
SJava, another UnsatisfiedLinkError
...val; for (int i=0; i < objects.length; i++) { System.err.println("("+i+") " + objects[i]); } } } } And here is my callR.win: #!sh # If the caller gives a class name, use that. # Otherwise, we will look for the environment variable JCLASS # or use the JavaRCall example if test -n "$1" ; then JCLASS=$1 fi JCLASS=${JCLASS-org.omegahat.R.Java.Examples.JavaRCall} # Ensure R_HOME is set and available to Java. #R_HOME=${R_HOME-/cygwin/home/duncan/Projects/R-1.3.1} #export R_HOME # Ensure that we can find SJava.dll and RInt...
2009 Oct 27
1
Rjava, RImageJ, and/or S4 question.
...J$openImage( file.choose() ) #pick an available .tif file img$show() # make the image object visible # An image is now displayed # find out about the objects involved > str(IJ) Formal class 'jobjRef' [package "rJava"] with 2 slots ..@ jobj :<externalptr> ..@ jclass: chr "ij/IJ" > str(img) Formal class 'jobjRef' [package "rJava"] with 2 slots ..@ jobj :<externalptr> ..@ jclass: chr "java/lang/Object" # now use an IJ java method to find out existing screen size IJ$getScreenSize() [1] "Java-Object{java...
2017 Mar 06
7
[PATCH 0/6] Various Coverity fixes #2
Hi, this patch series fixes few more issues discovered by Coverity. Thanks, Pino Toscano (6): tail: check the return value pf guestfs_set_pgroup daemon: btrfs: check end_stringsbuf return values everywhere java: use cleanup handlers for structs (lists) as return values lib: qemu: improve handling of FILE* p2v: check more return values p2v: fix possible close(-1) issue cat/tail.c
2006 Oct 12
0
Jmeeting & Wine .22
...1002c 0xb41e748 ): semi-stub fixme:avicap:capCreateCaptureWindowW L"VfwCamDetect", 50000000, 00000000, 00000000, 00000140, 000000f0, 0x10040, 00022100 VFW Driver +Could not create capture window JNIEXPORT void JNICALL Java_com_jsyntax_directshow_CaptureDeviceManager_detect0(JNIEnv * pEnv, jclass jCaptureDeviceManagerClass, jobject jDevicesList) fixme:imm:ImmGetOpenStatus (0xb491f40): semi-stub There are more similar errors, but that's the jist of it. I'm sure avicap had been attended to - or is it just that function that's not implemented? Anyone planning on anymore avicap w...
2011 Feb 07
1
rjava does not install
...Rglue.c:411: error: ?jobject? undeclared (first use in this function) Rglue.c:411: error: expected ?;? before ?tmpo? Rglue.c:412: error: expected ?;? before ?o? Rglue.c:414: error: ?jmethodID? undeclared (first use in this function) Rglue.c:414: error: expected ?;? before ?mid? Rglue.c:415: error: ?jclass? undeclared (first use in this function) Rglue.c:415: error: expected ?;? before ?cls? Rglue.c:416: error: ?JNIEnv? undeclared (first use in this function) Rglue.c:416: error: ?env? undeclared (first use in this function) Rglue.c:424: error: ?o? undeclared (first use in this function) Rglue.c:440:...
2003 Sep 24
1
SJava help
...a' Formats: text html latex example Array text html latex example Dollar text html latex example DotJavaSigs text html latex DotjavaConfig text html latex JClass text html latex example Java text html latex example JavaConstructor text html latex example JavaInit text html latex example JavaTerminate...
2009 Jul 15
2
rJava fails compilation on R-2.9.1 but not R-2.7.1 on Debian Lenny
...Rglue.c:411: error: ?jobject? undeclared (first use in this function) Rglue.c:411: error: expected ?;? before ?tmpo? Rglue.c:412: error: expected ?;? before ?o? Rglue.c:414: error: ?jmethodID? undeclared (first use in this function) Rglue.c:414: error: expected ?;? before ?mid? Rglue.c:415: error: ?jclass? undeclared (first use in this function) Rglue.c:415: error: expected ?;? before ?cls? Rglue.c:416: error: ?JNIEnv? undeclared (first use in this function) Rglue.c:416: error: ?env? undeclared (first use in this function) Rglue.c:424: error: ?o? undeclared (first use in this function) Rglue.c:440:...
2016 Feb 05
7
[PATCH 0/7] lib: Stop exporting the safe_malloc, etc. functions.
The safe_malloc (etc) functions call g->abort_fn on failure. That's not appropriate for language bindings, and we never intended that these internal functions be used from language bindings, that was just a historical accident. This patch series removes any external use of the safe_* functions. Rich.
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...ar *r;\n"; "NULL", "NULL" - | RString _ -> - pr " jstring jr;\n"; - pr " char *r;\n"; "NULL", "NULL" - | RStringList _ -> - pr " jobjectArray jr;\n"; - pr " int r_len;\n"; - pr " jclass cl;\n"; - pr " jstring jstr;\n"; - pr " char **r;\n"; "NULL", "NULL" - | RStruct (_, typ) -> - pr " jobject jr;\n"; - pr " jclass cl;\n"; - pr " jfieldID fl;\n"; - pr " struct guestfs_%s...