search for: clientdata

Displaying 20 results from an estimated 47 matches for "clientdata".

2007 Apr 17
0
[970] branches/wxruby2/wxwidgets_282/doc/textile/controlwithitems.txtl: Fixed a few formatting and content errors.
...lines">@@ -55,9 +55,9 @@ </span><span class="cx"> </span><span class="cx"> Adds the item to the end of the list box. </span><span class="cx"> </span><del>- Integer *append*(%(arg-type)String% item, %(arg-type)% clientData) </del><ins>+ Integer *append*(%(arg-type)String% item, %(arg-type)Object% clientData) </ins><span class="cx"> </span><del>- Integer *append*(%(arg-type)String% item, %(arg-type)ClientData% clientData) </del><ins>+ Integer *append*(%(arg-t...
2018 Jan 10
0
[shiny] How to read current URL address
Dears, I am trying to read the URL name (i.e "www.google.com") that I was redirected by my own code. What I already found that could help: session$clientData$url_protocol session$clientData$url_hostname session$clientData$url_pathname session$clientData$url_port session$clientData$url_search But then when I try to use this code in my server function the bellow Error appears: > urlSearch <- session$clientData$url_search Error in .getReactiveEnvir...
2004 Jan 19
1
daemon mode - local to server sync failing
...wing line from the rsync man page makes it look like this is relatively simple: for copying from the local machine to a remote rsync server. This is invoked when the destination path contains a :: separator or a rsync:// URL. I have setup the following entry in my rsyncd.conf file on my server: [clientdata] path = /rsync/clientdata I have the following directory setup on my client: /rsync/client/scriptoutput I run the following command on the client, nodeB: rsync -vvvvv --port=1477 /rsync/client/scriptoutput/* nodeA::clientdata and get the following output: opening tcp connection to nodeA por...
2012 Aug 30
0
[PATCH 02/11] vmci_datagram.patch: VMCI datagram entity handling.
....h" + +/* + * struct datagram_entry describes the datagram entity. It is used for datagram + * entities created only on the host. + */ +struct datagram_entry { + struct vmci_resource resource; + u32 flags; + bool runDelayed; + vmci_datagram_recv_cb recvCB; + void *clientData; + wait_queue_head_t destroyEvent; + u32 privFlags; +}; + +struct delayed_datagram_info { + bool inDGHostQueue; + struct datagram_entry *entry; + struct vmci_datagram msg; +}; + +static atomic_t delayedDGHostQueueSize; + +static void dg_free_cb(void *clientData) +{ +...
2012 Aug 30
0
[PATCH 02/11] vmci_datagram.patch: VMCI datagram entity handling.
....h" + +/* + * struct datagram_entry describes the datagram entity. It is used for datagram + * entities created only on the host. + */ +struct datagram_entry { + struct vmci_resource resource; + u32 flags; + bool runDelayed; + vmci_datagram_recv_cb recvCB; + void *clientData; + wait_queue_head_t destroyEvent; + u32 privFlags; +}; + +struct delayed_datagram_info { + bool inDGHostQueue; + struct datagram_entry *entry; + struct vmci_datagram msg; +}; + +static atomic_t delayedDGHostQueueSize; + +static void dg_free_cb(void *clientData) +{ +...
2006 Nov 23
0
[753] trunk/wxruby2/swig/classes/include/wxListBox.h: Added back in client data functions for listbox
...class="cx"> </span><span class="cx"> // override pure virtuals in a base class </span><span class="cx"> virtual int Append(const wxString& item ); </span><del>- //virtual int Append(const wxString& item , void * clientData ); </del><ins>+ virtual int Append(const wxString& item , void * clientData ); </ins><span class="cx"> virtual int Append(const wxString& item , wxClientData * clientData ); </span><span class="cx"> virtual void Append(const w...
2010 Dec 29
1
filling up holes
I have a data frame with three columns client ID | date | value For each cilent ID I want to determine Min date and Max date and for any dates in between that are missing I want to insert a row Client ID | date| NA Any help would be appreciated.
2011 Aug 14
2
Problem installing R Commander plugin...
..._Interp? tcltkimg.c:196: error: expected declaration specifiers before ?Tcl_Obj? tcltkimg.c:198: error: expected declaration specifiers before ?Tk_ImageType? tcltkimg.c:199: error: expected declaration specifiers before ?Tk_ImageMaster? tcltkimg.c:200: error: expected declaration specifiers before ?ClientData? tcltkimg.c:201: warning: type of ?interp? defaults to ?int? tcltkimg.c:201: warning: type of ?objv? defaults to ?int? tcltkimg.c:201: warning: type of ?typePtr? defaults to ?int? tcltkimg.c:201: warning: type of ?master? defaults to ?int? tcltkimg.c:201: warning: type of ?clientDataPtr? defaults t...
2012 Aug 30
0
[PATCH 03/11] vmci_doorbell.patch: VMCI doorbell notification handling.
...ry describes the a doorbell notification handle allocated by the + * host. + */ +struct dbell_entry { + struct vmci_resource resource; + uint32_t idx; + struct list_head idxListItem; + uint32_t privFlags; + bool runDelayed; + vmci_callback notifyCB; + void *clientData; + wait_queue_head_t destroyEvent; + atomic_t active; /* Only used by guest personality */ +}; + +/* The VMCI index table keeps track of currently registered doorbells. */ +static struct dbell_index_table { + spinlock_t lock; /* Index table lock */ + struct list_head...
2012 Aug 30
0
[PATCH 03/11] vmci_doorbell.patch: VMCI doorbell notification handling.
...ry describes the a doorbell notification handle allocated by the + * host. + */ +struct dbell_entry { + struct vmci_resource resource; + uint32_t idx; + struct list_head idxListItem; + uint32_t privFlags; + bool runDelayed; + vmci_callback notifyCB; + void *clientData; + wait_queue_head_t destroyEvent; + atomic_t active; /* Only used by guest personality */ +}; + +/* The VMCI index table keeps track of currently registered doorbells. */ +static struct dbell_index_table { + spinlock_t lock; /* Index table lock */ + struct list_head...
2007 Jun 22
0
[1056] trunk/wxruby2/swig/classes/include/wxToolBar.h: Add missing param to InsertTool long version; uncomment some methods now
...wxToolBarTool* AddTool(int toolId , const wxString& label , const wxBitmap& bitmap1 , const wxBitmap& bitmap2 = wxNullBitmap, wxItemKind kind = wxITEM_NORMAL, const wxString& shortHelpString = wxT(""), const wxString& longHelpString = wxT(""), wxObject* clientData = NULL) ; -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp/** -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp * \brief Adds a tool to the toolbar. The first (short and most commonly used) version -has fewer parameters than the full version at the p...
2009 Dec 29
0
aMSN segfaults at login after configuring my home network
...MSN stops working once again. This is the backtrace from the first link: Thread 2 (Thread 0xb7834b70 (LWP 11159)): #0 0xb7fe2430 in __kernel_vsyscall () No symbol table info available. #1 0xb7a9f981 in select () from /lib/tls/i686/cmov/libc.so.6 No locales. #2 0xb7e63d92 in NotifierThreadProc (clientData=0x0) at /build/buildd/tcl8.5-8.5.7/unix/../unix/tclUnixNotfy.c:984 tsdPtr = 0x0 readableMask = {__fds_bits = {32, 0 <repeats 31 times>}} writableMask = {__fds_bits = {0 <repeats 32 times>}} exceptionalMask = {__fds_bits = {0 <repeats 32 times>}}...
2012 Aug 30
0
[PATCH 08/11] vmci_queue_pair.patch: VMCI queue pair implementation.
...rusted; + bool vmciPageFiles; /* Created by VMX using VMCI page files */ + struct vmci_queue *produceQ; + struct vmci_queue *consumeQ; + struct vmci_queue_header savedProduceQ; + struct vmci_queue_header savedConsumeQ; + VMCIEventReleaseCB wakeupCB; + void *clientData; + void *localMem; /* Kernel memory for local queue pair */ +}; + +struct qp_guest_endpoint { + struct qp_entry qp; + uint64_t numPPNs; + void *produceQ; + void *consumeQ; + struct PPNSet ppnSet; +}; + +struct qp_list { + struct list_head head; + str...
2012 Aug 30
0
[PATCH 08/11] vmci_queue_pair.patch: VMCI queue pair implementation.
...rusted; + bool vmciPageFiles; /* Created by VMX using VMCI page files */ + struct vmci_queue *produceQ; + struct vmci_queue *consumeQ; + struct vmci_queue_header savedProduceQ; + struct vmci_queue_header savedConsumeQ; + VMCIEventReleaseCB wakeupCB; + void *clientData; + void *localMem; /* Kernel memory for local queue pair */ +}; + +struct qp_guest_endpoint { + struct qp_entry qp; + uint64_t numPPNs; + void *produceQ; + void *consumeQ; + struct PPNSet ppnSet; +}; + +struct qp_list { + struct list_head head; + str...
2011 May 24
3
Can a libFLAC encoder be initialize and called from inside a libFLAC decoder callback?
...ecodes to a WAV file and then re-encodes the WAV file, but would like to avoid all that I/O. Regards. David FLAC__StreamDecoderWriteStatus FLACRecoder::StaticWriteCallback(const FLAC__StreamDecoder *FLACStreamDecoder, const FLAC__Frame *Frame, const FLAC__int32 *const Buffer[], void *ClientData) { return ((FLACRecoder *)(ClientData))->ClassWriteCallback(FLACStreamDecoder, Frame, Buffer); } FLAC__StreamDecoderWriteStatus FLACRecoder::ClassWriteCallback(const FLAC__StreamDecoder *WXUNUSED(FLACStreamDecoder), const FLAC__Frame *Frame, const FLAC__int32 *const Buffer[]) { if...
2012 May 14
0
phyloclim could not be installed in linux - problems on tkrplot dependence
..._Interp’ tcltkimg.c:196: error: expected declaration specifiers before ‘Tcl_Obj’ tcltkimg.c:198: error: expected declaration specifiers before ‘Tk_ImageType’ tcltkimg.c:199: error: expected declaration specifiers before ‘Tk_ImageMaster’ tcltkimg.c:200: error: expected declaration specifiers before ‘ClientData’ tcltkimg.c:192: warning: type of ‘interp’ defaults to ‘int’ tcltkimg.c:192: warning: type of ‘objv’ defaults to ‘int’ tcltkimg.c:192: warning: type of ‘typePtr’ defaults to ‘int’ tcltkimg.c:192: warning: type of ‘master’ defaults to ‘int’ tcltkimg.c:192: warning: type of ‘clientDataPtr’ defaults t...
2007 Jun 22
0
[1057] trunk/wxruby2/swig/classes/include/wxToolBar.h: Add new methods from the 2.8 API
...;<span class="cx"> wxToolBarToolBase* AddCheckTool(int toolId , const wxString& label , const wxBitmap& bitmap1 , const wxBitmap& bitmap2 , const wxString& shortHelpString = wxT(""), const wxString& longHelpString = wxT(""), wxObject* clientData = NULL) ; </span><span class="cx"> wxToolBarToolBase* AddRadioTool(int toolId , const wxString& label , const wxBitmap& bitmap1 , const wxBitmap& bitmap2 , const wxString& shortHelpString = wxT(""), const wxString& longHelpString = wxT(&qu...
2012 Jun 12
11
[vmw_vmci RFCv2 00/11] VMCI for Linux
Second revision of the VMware VMCI RFC patchset. It incorperates fixes for all the feedback about the comment blocks and style and now passes checkpatch with 0 errors and 0 warnings. Thanks to all who have reviewed the code thus far. * * * In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the Virtual Machine Communication
2012 Jun 12
11
[vmw_vmci RFCv2 00/11] VMCI for Linux
Second revision of the VMware VMCI RFC patchset. It incorperates fixes for all the feedback about the comment blocks and style and now passes checkpatch with 0 errors and 0 warnings. Thanks to all who have reviewed the code thus far. * * * In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the Virtual Machine Communication
2012 Jul 26
16
[vmw_vmci 00/11] VMCI for Linux
In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the Virtual Machine Communication Interface (vmw_vmci) and VMCI Sockets (vmw_vsock) kernel modules for inclusion in the Linux kernel. The purpose of this post is to acquire feedback on the vmw_vmci kernel module. The vmw_vsock kernel module will be presented in a later post.