generated from Serial-ATA/sscrt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b766f1
commit 59784a4
Showing
19 changed files
with
294 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
use crate::objects::class::Class; | ||
use crate::objects::reference::Reference; | ||
|
||
use std::ptr::NonNull; | ||
use std::sync::atomic::{AtomicBool, Ordering}; | ||
|
||
use ::jni::env::JniEnv; | ||
use ::jni::sys::jint; | ||
use common::int_types::{s4, s8}; | ||
use common::traits::PtrType; | ||
use instructions::Operand; | ||
|
||
include_generated!("native/java/lang/def/Module.definitions.rs"); | ||
|
||
pub fn defineModule0( | ||
_: NonNull<JniEnv>, | ||
_class: &'static Class, | ||
_module: Reference, // java.lang.Module | ||
_is_open: bool, | ||
_version: Reference, // java.lang.String | ||
_location: Reference, // java.lang.String | ||
_pns: Reference, // java.lang.Object[] | ||
) { | ||
unimplemented!("java.lang.Module#defineModule0"); | ||
} | ||
|
||
pub fn addReads0( | ||
_: NonNull<JniEnv>, | ||
_class: &'static Class, | ||
_from: Reference, // java.lang.Module | ||
_to: Reference, // java.lang.Module | ||
) { | ||
unimplemented!("java.lang.Module#addReads0"); | ||
} | ||
|
||
pub fn addExports0( | ||
_: NonNull<JniEnv>, | ||
_class: &'static Class, | ||
_from: Reference, // java.lang.Module | ||
_pn: Reference, // java.lang.String | ||
_to: Reference, // java.lang.Module | ||
) { | ||
unimplemented!("java.lang.Module#addExports0"); | ||
} | ||
|
||
pub fn addExportsToAll0( | ||
_: NonNull<JniEnv>, | ||
_class: &'static Class, | ||
_from: Reference, // java.lang.Module | ||
_pn: Reference, // java.lang.String | ||
) { | ||
unimplemented!("java.lang.Module#addExportsToAll0"); | ||
} | ||
|
||
pub fn addExportsToAllUnnamed0( | ||
_: NonNull<JniEnv>, | ||
_class: &'static Class, | ||
_from: Reference, // java.lang.Module | ||
_pn: Reference, // java.lang.String | ||
) { | ||
unimplemented!("java.lang.Module#addExportsToAllUnnamed0"); | ||
} |
Oops, something went wrong.