Searched refs:msecs (Results 1 - 25 of 48) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/ec/cpp/
H A DECMuleSocket.h51 bool InternalWaitOnConnect(long secs = -1, long msecs = 0) { return wxSocketClient::WaitOnConnect(secs,msecs); };
52 bool InternalWaitForWrite(long secs = -1, long msecs = 0) { return wxSocketClient::WaitForWrite(secs,msecs); };
53 bool InternalWaitForRead(long secs = -1, long msecs = 0) { return wxSocketClient::WaitForRead(secs,msecs); };
H A DECSocket.h207 bool WaitSocketConnect(long secs = -1, long msecs = 0) { return InternalWaitOnConnect(secs,msecs); }
208 bool WaitSocketWrite(long secs = -1, long msecs = 0) { return InternalWaitForWrite(secs,msecs); }
209 bool WaitSocketRead(long secs = -1, long msecs = 0) { return InternalWaitForRead(secs,msecs); }
240 virtual bool InternalWaitOnConnect(long secs = -1, long msecs = 0) = 0;
241 virtual bool InternalWaitForWrite(long secs = -1, long msecs = 0) = 0;
242 virtual bool InternalWaitForRead(long secs = -1, long msecs = 0) = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Dutil.c54 void rc_mdelay(int msecs) argument
58 tv.tv_sec = (int) msecs / 1000;
59 tv.tv_usec = (msecs % 1000) * 1000;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Ddelay.h46 void msleep(unsigned int msecs);
47 unsigned long msleep_interruptible(unsigned int msecs);
H A Dgameport.h39 unsigned int poll_interval; /* in msecs */
220 static inline void gameport_set_poll_interval(struct gameport *gameport, unsigned int msecs) argument
222 gameport->poll_interval = msecs;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dtooltip.cpp74 void wxToolTip::SetDelay( long msecs )
79 gtk_tooltips_set_delay( ss_tooltips, (int)msecs );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DGetTickCount.cpp79 unsigned long msecs = aika.tv_sec * 1000; local
80 msecs += (aika.tv_usec / 1000);
81 return msecs;
H A DOtherFunctions.h245 wxString CastSecondsToHM(uint32 seconds, uint16 msecs = 0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/radvd/
H A Dutil.c21 mdelay(double msecs) argument
25 tv.tv_sec = (time_t)(msecs / 1000.0);
26 tv.tv_usec = (suseconds_t)((msecs - tv.tv_sec * 1000.0) * 1000.0);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/radvd/
H A Dutil.c21 mdelay(double msecs) argument
25 tv.tv_sec = (time_t)(msecs / 1000.0);
26 tv.tv_usec = (suseconds_t)((msecs - tv.tv_sec * 1000.0) * 1000.0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dtooltip.h35 static void SetDelay( long msecs );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk1/
H A Dtooltip.h33 static void SetDelay( long msecs );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dcrash.c120 unsigned int msecs; local
128 msecs = 10000;
129 while ((cpus_weight(cpus_in_crash) < ncpus) && (--msecs > 0)) {
158 unsigned int msecs; local
161 msecs = 10000;
162 for (i=0; i < NR_CPUS && msecs > 0; i++) {
174 msecs--;
190 int msecs = 5; local
195 if (--msecs < 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dtooltip.cpp88 void wxToolTip::SetDelay( long msecs )
95 gtk_tooltips_set_delay( gs_tooltips, (int)msecs );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ide/
H A Dide-park.c94 unsigned int msecs; local
103 msecs = jiffies_to_msecs(drive->sleep - now);
105 msecs = 0;
108 return snprintf(buf, 20, "%u\n", msecs);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dtooltip.cpp110 void wxToolTip::SetDelay( long msecs )
112 s_ToolTipDelay = msecs ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dreboot.c797 unsigned long msecs; local
816 msecs = 1000; /* Wait at most a second for the other cpus to stop */
817 while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) {
819 msecs--;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/
H A Dospf6d.c109 char days[16], hours[16], mins[16], secs[16], msecs[16], usecs[16];
117 snprintf (msecs, sizeof (msecs), "%ld msecs ", msec);
123 (msec ? msecs : ""), (usec ? usecs : ""));
129 char days[16], hours[16], mins[16], secs[16], msecs[16], usecs[16];
137 snprintf (msecs, sizeof (msecs), "%ldms", msec);
108 char days[16], hours[16], mins[16], secs[16], msecs[16], usecs[16]; local
128 char days[16], hours[16], mins[16], secs[16], msecs[16], usecs[16]; local
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/hdparm-9.43/
H A Dhdparm.h31 unsigned char wdidle3_msecs_to_timeout (unsigned int msecs);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtooltip.tex32 \func{static void}{SetDelay}{\param{long }{msecs}}
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dpanic.c267 static void spin_msec(int msecs) argument
271 for (i = 0; i < msecs; i++) {
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/
H A Darping.c275 long msecs = (usecs+500)/1000; local
276 usecs -= msecs*1000 - 500;
277 printf(" %ld.%03ldms\n", msecs, usecs);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dtooltip.cpp136 void wxToolTip::SetDelay( long msecs )
138 s_ToolTipDelay = msecs ;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Dnetlink.h103 * nla_put_msecs(skb, type, jiffies) add msecs attribute to skb
113 * NLA_PUT_MSECS(skb, type, jiffies) add msecs attribute to skb
139 * nla_get_msecs(nla) get payload for a msecs attribute
784 * nla_put_msecs - Add a msecs netlink attribute to a socket buffer
787 * @jiffies: number of msecs in jiffies
931 * nla_get_msecs - return payload of msecs attribute
932 * @nla: msecs netlink attribute
938 u64 msecs = nla_get_u64(nla); local
940 return msecs_to_jiffies((unsigned long) msecs);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-stat.c23 Wall-clock time elapsed: 123.786620 msecs
382 double msecs = avg / 1e6; local
384 fprintf(stderr, " %18.6f %-24s", msecs, event_name(counter));

Completed in 243 milliseconds

12