|
void | IDDefText (const ITextVectorProperty *t, const char *msg,...) |
| Tell client to create a text vector property. More...
|
|
void | IDDefNumber (const INumberVectorProperty *n, const char *msg,...) |
| Tell client to create a number number property. More...
|
|
void | IDDefSwitch (const ISwitchVectorProperty *s, const char *msg,...) |
| Tell client to create a switch vector property. More...
|
|
void | IDDefLight (const ILightVectorProperty *l, const char *msg,...) |
| Tell client to create a light vector property. More...
|
|
void | IDDefBLOB (const IBLOBVectorProperty *b, const char *msg,...) |
| Tell client to create a BLOB vector property. More...
|
|
void | IDSetText (const ITextVectorProperty *t, const char *msg,...) |
| Tell client to update an existing text vector property. More...
|
|
void | IDSetNumber (const INumberVectorProperty *n, const char *msg,...) |
| Tell client to update an existing number vector property. More...
|
|
void | IDSetSwitch (const ISwitchVectorProperty *s, const char *msg,...) |
| Tell client to update an existing switch vector property. More...
|
|
void | IDSetLight (const ILightVectorProperty *l, const char *msg,...) |
| Tell client to update an existing light vector property. More...
|
|
void | IDSetBLOB (const IBLOBVectorProperty *b, const char *msg,...) |
| Tell client to update an existing BLOB vector property. More...
|
|
void | IDMessage (const char *dev, const char *msg,...) |
| Function Drivers call to send log messages to Clients. More...
|
|
void | IDDelete (const char *dev, const char *name, const char *msg,...) |
| Function Drivers call to inform Clients a Property is no longer available, or the entire device is gone if name is NULL. More...
|
|
void | IDLog (const char *msg,...) |
| Function Drivers call to log a message locally. More...
|
|
void | IDSnoopDevice (const char *snooped_device, const char *snooped_property) |
| Function a Driver calls to snoop on another Device. More...
|
|
void | IDSnoopBLOBs (const char *snooped_device, const char *snooped_property, BLOBHandling bh) |
| Function a Driver calls to control whether they will receive BLOBs from snooped devices. More...
|
|
int | IEAddCallback (int readfiledes, IE_CBF *fp, void *userpointer) |
| Register a new callback, fp, to be called with userpointer as argument when readfiledes is ready. More...
|
|
void | IERmCallback (int callbackid) |
| Remove a callback function. More...
|
|
int | IEAddTimer (int millisecs, IE_TCF *fp, void *userpointer) |
| Register a new timer function, fp, to be called with ud as argument after ms. More...
|
|
void | IERmTimer (int timerid) |
| Remove the timer with the given timerid, as returned from IEAddTimer. More...
|
|
int | IEAddWorkProc (IE_WPF *fp, void *userpointer) |
| Add a new work procedure, fp, to be called with ud when nothing else to do. More...
|
|
void | IERmWorkProc (int workprocid) |
| Remove a work procedure. More...
|
|
int | IEDeferLoop (int maxms, int *flagp) |
|
int | IEDeferLoop0 (int maxms, int *flagp) |
|
IText * | IUFindText (const ITextVectorProperty *tvp, const char *name) |
| Find an IText member in a vector text property. More...
|
|
INumber * | IUFindNumber (const INumberVectorProperty *nvp, const char *name) |
| Find an INumber member in a number text property. More...
|
|
ISwitch * | IUFindSwitch (const ISwitchVectorProperty *svp, const char *name) |
| Find an ISwitch member in a vector switch property. More...
|
|
ILight * | IUFindLight (const ILightVectorProperty *lvp, const char *name) |
| Find an ILight member in a vector Light property. More...
|
|
IBLOB * | IUFindBLOB (const IBLOBVectorProperty *bvp, const char *name) |
| Find an IBLOB member in a vector BLOB property. More...
|
|
ISwitch * | IUFindOnSwitch (const ISwitchVectorProperty *sp) |
| Returns the first ON switch it finds in the vector switch property. More...
|
|
int | IUFindIndex (const char *needle, char **hay, unsigned int n) |
| Returns the index of the string in a string array. More...
|
|
int | IUFindOnSwitchIndex (const ISwitchVectorProperty *sp) |
| Returns the index of first ON switch it finds in the vector switch property. More...
|
|
const char * | IUFindOnSwitchName (ISState *states, char *names[], int n) |
| Returns the name of the first ON switch it finds in the supplied arguments. More...
|
|
void | IUResetSwitch (ISwitchVectorProperty *svp) |
| Reset all switches in a switch vector property to OFF. More...
|
|
int | IUUpdateSwitch (ISwitchVectorProperty *svp, ISState *states, char *names[], int n) |
| Update all switches in a switch vector property. More...
|
|
int | IUUpdateNumber (INumberVectorProperty *nvp, double values[], char *names[], int n) |
| Update all numbers in a number vector property. More...
|
|
int | IUUpdateText (ITextVectorProperty *tvp, char *texts[], char *names[], int n) |
| Update all text members in a text vector property. More...
|
|
int | IUUpdateBLOB (IBLOBVectorProperty *bvp, int sizes[], int blobsizes[], char *blobs[], char *formats[], char *names[], int n) |
| Update all BLOB members in a BLOB vector property. More...
|
|
int | IUSaveBLOB (IBLOB *bp, int size, int blobsize, char *blob, char *format) |
| Function to save blob metadata in the corresponding blob. More...
|
|
void | IUUpdateMinMax (const INumberVectorProperty *nvp) |
| Function to update the min and max elements of a number in the client. More...
|
|
void | IUSaveText (IText *tp, const char *newtext) |
| Function to reliably save new text in a IText. More...
|
|
void | IUFillSwitch (ISwitch *sp, const char *name, const char *label, ISState s) |
| Assign attributes for a switch property. More...
|
|
void | IUFillLight (ILight *lp, const char *name, const char *label, IPState s) |
| Assign attributes for a light property. More...
|
|
void | IUFillNumber (INumber *np, const char *name, const char *label, const char *format, double min, double max, double step, double value) |
| Assign attributes for a number property. More...
|
|
void | IUFillText (IText *tp, const char *name, const char *label, const char *initialText) |
| Assign attributes for a text property. More...
|
|
void | IUFillBLOB (IBLOB *bp, const char *name, const char *label, const char *format) |
| Assign attributes for a BLOB property. More...
|
|
void | IUFillSwitchVector (ISwitchVectorProperty *svp, ISwitch *sp, int nsp, const char *dev, const char *name, const char *label, const char *group, IPerm p, ISRule r, double timeout, IPState s) |
| Assign attributes for a switch vector property. More...
|
|
void | IUFillLightVector (ILightVectorProperty *lvp, ILight *lp, int nlp, const char *dev, const char *name, const char *label, const char *group, IPState s) |
| Assign attributes for a light vector property. More...
|
|
void | IUFillNumberVector (INumberVectorProperty *nvp, INumber *np, int nnp, const char *dev, const char *name, const char *label, const char *group, IPerm p, double timeout, IPState s) |
| Assign attributes for a number vector property. More...
|
|
void | IUFillTextVector (ITextVectorProperty *tvp, IText *tp, int ntp, const char *dev, const char *name, const char *label, const char *group, IPerm p, double timeout, IPState s) |
| Assign attributes for a text vector property. More...
|
|
void | IUFillBLOBVector (IBLOBVectorProperty *bvp, IBLOB *bp, int nbp, const char *dev, const char *name, const char *label, const char *group, IPerm p, double timeout, IPState s) |
| Assign attributes for a BLOB vector property. More...
|
|
int | IUSnoopNumber (XMLEle *root, INumberVectorProperty *nvp) |
| Update a snooped number vector property from the given XML root element. More...
|
|
int | IUSnoopText (XMLEle *root, ITextVectorProperty *tvp) |
| Update a snooped text vector property from the given XML root element. More...
|
|
int | IUSnoopLight (XMLEle *root, ILightVectorProperty *lvp) |
| Update a snooped light vector property from the given XML root element. More...
|
|
int | IUSnoopSwitch (XMLEle *root, ISwitchVectorProperty *svp) |
| Update a snooped switch vector property from the given XML root element. More...
|
|
int | IUSnoopBLOB (XMLEle *root, IBLOBVectorProperty *bvp) |
| Update a snooped BLOB vector property from the given XML root element. More...
|
|
void | ISGetProperties (const char *dev) |
| Get Device Properties. More...
|
|
void | ISNewText (const char *dev, const char *name, char *texts[], char *names[], int n) |
| Update the value of an existing text vector property. More...
|
|
void | ISNewNumber (const char *dev, const char *name, double *values, char *names[], int n) |
| Update the value of an existing number vector property. More...
|
|
void | ISNewSwitch (const char *dev, const char *name, ISState *states, char *names[], int n) |
| Update the value of an existing switch vector property. More...
|
|
void | ISNewBLOB (const char *dev, const char *name, int sizes[], int blobsizes[], char *blobs[], char *formats[], char *names[], int n) |
| Update data of an existing blob vector property. More...
|
|
void | ISSnoopDevice (XMLEle *root) |
| Function defined by Drivers that is called when another Driver it is snooping (by having previously called IDSnoopDevice()) sent any INDI message. More...
|
|
int | crackDN (XMLEle *root, char **dev, char **name, char msg[]) |
| Extract dev and name attributes from an XML element. More...
|
|
int | crackIPState (const char *str, IPState *ip) |
| Extract property state (Idle, OK, Busy, Alert) from the supplied string. More...
|
|
int | crackISState (const char *str, ISState *ip) |
| Extract switch state (On or Off) from the supplied string. More...
|
|
int | crackIPerm (const char *str, IPerm *ip) |
| Extract property permission state (RW, RO, WO) from the supplied string. More...
|
|
int | crackISRule (const char *str, ISRule *ip) |
| Extract switch rule (OneOfMany, OnlyOne..etc) from the supplied string. More...
|
|
const char * | pstateStr (IPState s) |
|
const char * | sstateStr (ISState s) |
|
const char * | ruleStr (ISRule r) |
|
const char * | permStr (IPerm p) |
|
void | xmlv1 () |
|