All Packages This Package Class Hierarchy Class Search Index
Class com.syncbuilder.internal.core.calls
java.lang.Object
|
+----com.syncbuilder.internal.core.calls
public class calls
extends java.lang.Object
{
// Constructors 1
public calls();
// Methods 48
public static native byte[] dlp_CallApplication(int, Char4, int, int, byte[], int[]) throws DlpException;
public static native int dlp_CleanUpDatabase(int, int) throws DlpException;
public static native int dlp_DeleteCategory(int, int, int) throws DlpException;
public static native int dlp_DeleteDB(int, int, String) throws DlpException;
public static native int dlp_DeleteRecord(int, int, boolean, RecordID) throws DlpException;
public static native int dlp_DeleteResource(int, int, boolean, Char4, int) throws DlpException;
public static native Date dlp_GetSysDateTime(int) throws DlpException;
public static native int dlp_MoveCategory(int, int, int, int) throws DlpException;
public static native AppBlock dlp_ReadAppBlock(int, int, DatabaseImpl) throws DlpException;
public static native Pref dlp_ReadAppPreference(int, Char4, int, boolean, DatabaseImpl) throws DlpException;
public static native int dlp_ReadFeature(int, Char4, int) throws DlpException;
public static native NetSyncInfo dlp_ReadNetSyncInfo(int) throws DlpException;
public static native Record dlp_ReadNextModifiedRec(int, int, DatabaseImpl) throws DlpException;
public static native Record dlp_ReadNextModifiedRecInCategory(int, int, int, DatabaseImpl) throws DlpException;
public static native Record dlp_ReadNextRecInCategory(int, int, int, DatabaseImpl) throws DlpException;
public static native Record dlp_ReadRecordByID(int, int, RecordID, DatabaseImpl) throws DlpException;
public static native RecordID[] dlp_ReadRecordIDList(int, int, boolean, int, int) throws DlpException;
public static native Resource dlp_ReadResourceByIndex(int, int, int, DatabaseImpl) throws DlpException;
public static native Resource dlp_ReadResourceByType(int, int, Char4, int, DatabaseImpl) throws DlpException;
public static native SortBlock dlp_ReadSortBlock(int, int, DatabaseImpl) throws DlpException;
public static native CardInfo dlp_ReadStorageInfo(int, int) throws DlpException;
public static native SysInfo dlp_ReadSysInfo(int) throws DlpException;
public static native int dlp_ResetDBIndex(int, int) throws DlpException;
public static native int dlp_ResetSyncFlags(int, int) throws DlpException;
public static native int dlp_ResetSystem(int) throws DlpException;
public static native int dlp_SetSysDateTime(int, Date) throws DlpException;
public static native int dlp_WriteAppBlock(int, int, AppBlock) throws DlpException;
public static native int dlp_WriteAppPreference(int, Pref) throws DlpException;
public static native int dlp_WriteNetSyncInfo(int, NetSyncInfo) throws DlpException;
public static native int dlp_WriteResource(int, int, Resource) throws DlpException;
public static native int dlp_WriteSortBlock(int, int, SortBlock) throws DlpException;
public static native int dlp_WriteUserInfo(int, UserInfo) throws DlpException;
public static int getArrayLength(byte[]);
public static byte[] getByteArray(int);
public static int[] makeIntArray(int);
public static RecordID[] makeRecordIDArray(int);
public static Object[] makeStringArray(int);
public static native int pi_accept(int) throws IOException;
public static native int pi_bind(int, String) throws IOException;
public static native int pi_close(int) throws IOException;
public static native int pi_listen(int, int) throws IOException;
public static native int pi_noendsync(int);
public static native int pi_read(int, byte[], int) throws IOException;
public static native int pi_socket(int, int, int) throws IOException;
public static native int pi_tickle(int) throws IOException;
public static native int pi_version(int) throws IOException;
public static native int pi_watchdog(int, int) throws IOException;
public static native int pi_write(int, byte[], int) throws IOException;
}
This class acts as the connecting element between the Java-binding and the native code.
One fine day it will hopefully be obsolete :-)
public calls()
Default constructor
public static native int pi_close(int socket) throws IOException
public static native int pi_socket(int domain,
int type,
int protocol) throws IOException
public static native int pi_bind(int socket,
String device) throws IOException
public static native int pi_listen(int socket,
int backlog) throws IOException
public static native int pi_accept(int socket) throws IOException
public static native int pi_version(int socket) throws IOException
public static native int pi_tickle(int socket) throws IOException
public static native int pi_watchdog(int socket,
int interval) throws IOException
public static native int pi_read(int socket,
byte[] data,
int len) throws IOException
public static native int pi_write(int socket,
byte[] data,
int len) throws IOException
public static native int pi_noendsync(int socket)
public static native int dlp_DeleteDB(int socket,
int card,
String name) throws DlpException
public static native int dlp_DeleteCategory(int socket,
int handle,
int category) throws DlpException
public static native Date dlp_GetSysDateTime(int socket) throws DlpException
public static native int dlp_SetSysDateTime(int socket,
Date date) throws DlpException
public static native AppBlock dlp_ReadAppBlock(int socket,
int handle,
DatabaseImpl dbClass) throws DlpException
public static native SortBlock dlp_ReadSortBlock(int socket,
int handle,
DatabaseImpl dbClass) throws DlpException
public static native Pref dlp_ReadAppPreference(int socket,
Char4 creator,
int id,
boolean backup,
DatabaseImpl dbClass) throws DlpException
public static native Record dlp_ReadNextModifiedRec(int socket,
int handle,
DatabaseImpl dbClass) throws DlpException
public static native Record dlp_ReadNextModifiedRecInCategory(int socket,
int handle,
int category,
DatabaseImpl dbClass) throws DlpException
public static native Record dlp_ReadNextRecInCategory(int socket,
int handle,
int category,
DatabaseImpl dbClass) throws DlpException
public static native Record dlp_ReadRecordByID(int socket,
int handle,
RecordID id,
DatabaseImpl dbClass) throws DlpException
public static native Resource dlp_ReadResourceByType(int socket,
int handle,
Char4 type,
int id,
DatabaseImpl dbClass) throws DlpException
public static native Resource dlp_ReadResourceByIndex(int socket,
int handle,
int index,
DatabaseImpl dbClass) throws DlpException
public static native int dlp_WriteAppPreference(int socket,
Pref pref) throws DlpException
public static native int dlp_WriteResource(int socket,
int handle,
Resource resource) throws DlpException
public static native int dlp_WriteAppBlock(int socket,
int handle,
AppBlock appblock) throws DlpException
public static native int dlp_WriteSortBlock(int socket,
int handle,
SortBlock sortblock) throws DlpException
public static native CardInfo dlp_ReadStorageInfo(int socket,
int card) throws DlpException
public static native int dlp_ResetSystem(int socket) throws DlpException
public static native int dlp_WriteUserInfo(int socket,
UserInfo info) throws DlpException
public static native SysInfo dlp_ReadSysInfo(int socket) throws DlpException
public static native NetSyncInfo dlp_ReadNetSyncInfo(int socket) throws DlpException
public static native int dlp_WriteNetSyncInfo(int socket,
NetSyncInfo info) throws DlpException
public static native int dlp_CleanUpDatabase(int socket,
int handle) throws DlpException
public static native int dlp_ResetSyncFlags(int socket,
int handle) throws DlpException
public static native int dlp_MoveCategory(int socket,
int handle,
int from,
int to) throws DlpException
public static native int dlp_DeleteRecord(int socket,
int handle,
boolean all,
RecordID id) throws DlpException
public static native int dlp_DeleteResource(int socket,
int handle,
boolean all,
Char4 type,
int id) throws DlpException
public static native int dlp_ReadFeature(int socket,
Char4 creator,
int id) throws DlpException
public static native RecordID[] dlp_ReadRecordIDList(int socket,
int handle,
boolean sort,
int start,
int max) throws DlpException
public static native byte[] dlp_CallApplication(int socket,
Char4 creator,
int type,
int action,
byte[] argument,
int[] retcode) throws DlpException
public static native int dlp_ResetDBIndex(int socket,
int handle) throws DlpException
public static byte[] getByteArray(int length)
public static int getArrayLength(byte[] array)
public static RecordID[] makeRecordIDArray(int length)
public static Object[] makeStringArray(int length)
public static int[] makeIntArray(int length)
All Packages This Package Class Hierarchy Class Search Index
Freshly brewed Java API Documentation automatically generated with polardoc Version 1.0.7