Class LLVMError
java.lang.Object
org.lwjgl.llvm.LLVMError
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classContains the function pointers loaded fromLLVMCore.getLibrary(). -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic voidLLVMCantFail(long Err) void LLVMCantFail(LLVMErrorRef Err)static voidLLVMConsumeError(long Err) void LLVMConsumeError(LLVMErrorRef Err)static longLLVMCreateStringError(CharSequence ErrMsg) LLVMErrorRef LLVMCreateStringError(char const * ErrMsg)static longLLVMCreateStringError(ByteBuffer ErrMsg) LLVMErrorRef LLVMCreateStringError(char const * ErrMsg)static voidLLVMDisposeErrorMessage(ByteBuffer ErrMsg) void LLVMDisposeErrorMessage(char * ErrMsg)static @Nullable ByteBufferLLVMGetErrorMessage(long Err) char * LLVMGetErrorMessage(LLVMErrorRef Err)static longLLVMGetErrorTypeId(long Err) LLVMErrorTypeId LLVMGetErrorTypeId(LLVMErrorRef Err)static longLLVMErrorTypeId LLVMGetStringErrorTypeId(void)static longnLLVMCreateStringError(long ErrMsg) LLVMErrorRef LLVMCreateStringError(char const * ErrMsg)static voidnLLVMDisposeErrorMessage(long ErrMsg) void LLVMDisposeErrorMessage(char * ErrMsg)static longnLLVMGetErrorMessage(long Err) char * LLVMGetErrorMessage(LLVMErrorRef Err)
-
Field Details
-
LLVMErrorSuccess
public static final int LLVMErrorSuccess- See Also:
-
-
Method Details
-
LLVMGetErrorTypeId
@NativeType("LLVMErrorTypeId") public static long LLVMGetErrorTypeId(@NativeType("LLVMErrorRef") long Err) LLVMErrorTypeId LLVMGetErrorTypeId(LLVMErrorRef Err) -
LLVMConsumeError
void LLVMConsumeError(LLVMErrorRef Err) -
LLVMCantFail
void LLVMCantFail(LLVMErrorRef Err) -
nLLVMGetErrorMessage
public static long nLLVMGetErrorMessage(long Err) char * LLVMGetErrorMessage(LLVMErrorRef Err) -
LLVMGetErrorMessage
@NativeType("char *") public static @Nullable ByteBuffer LLVMGetErrorMessage(@NativeType("LLVMErrorRef") long Err) char * LLVMGetErrorMessage(LLVMErrorRef Err) -
nLLVMDisposeErrorMessage
public static void nLLVMDisposeErrorMessage(long ErrMsg) void LLVMDisposeErrorMessage(char * ErrMsg) -
LLVMDisposeErrorMessage
void LLVMDisposeErrorMessage(char * ErrMsg) -
LLVMGetStringErrorTypeId
LLVMErrorTypeId LLVMGetStringErrorTypeId(void) -
nLLVMCreateStringError
public static long nLLVMCreateStringError(long ErrMsg) LLVMErrorRef LLVMCreateStringError(char const * ErrMsg) -
LLVMCreateStringError
@NativeType("LLVMErrorRef") public static long LLVMCreateStringError(@NativeType("char const *") ByteBuffer ErrMsg) LLVMErrorRef LLVMCreateStringError(char const * ErrMsg) -
LLVMCreateStringError
@NativeType("LLVMErrorRef") public static long LLVMCreateStringError(@NativeType("char const *") CharSequence ErrMsg) LLVMErrorRef LLVMCreateStringError(char const * ErrMsg)
-