Searched refs:put (Results 1 - 25 of 30) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_queue.py91 q.put(111)
92 q.put(333)
93 q.put(222)
101 q.put(i)
106 q.put(last)
109 q.put(full, block=0)
114 q.put(full, timeout=0.01)
118 # Test a blocking put
119 self.do_blocking_test(q.put, (full,), q.get, ())
120 self.do_blocking_test(q.put, (ful
[all...]
H A Dtest_telnetlib.py130 self.dataq.put(want)
139 self.dataq.put(want)
152 self.dataq.put(want)
160 self.dataq.put([self.block_long, EOF_sigil])
170 self.dataq.put([EOF_sigil])
183 self.dataq.put(want)
191 self.dataq.put([EOF_sigil])
207 self.dataq.put(want)
222 self.dataq.put([EOF_sigil])
243 self.dataq.put([EOF_sigi
[all...]
H A Dtest_multiprocessing.py166 q.put(args)
167 q.put(kwds)
168 q.put(current.name)
170 q.put(bytes(current.authkey))
171 q.put(current.pid)
375 queue.put(1)
376 queue.put(2, True)
377 queue.put(3, True, None)
378 queue.put(4, False)
379 queue.put(
[all...]
H A Dtest_dummy_thread.py126 queue.put((arg1, arg2))
147 """Wait for ``delay`` seconds and then put something into ``queue``"""
149 queue.put(_thread.get_ident())
H A Dregrtest.py55 -- Directory where coverage files are put
507 output.put((None, None, None, None))
520 output.put((None, None, None, None))
525 output.put((test, stdout.rstrip(), stderr.rstrip(), result))
527 output.put((None, None, None, None))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
H A Dwcgui.py253 d.put("URL: %s\n" % self.format_url(url))
255 d.put("Error: %s\n" % str(self.bad[url]))
257 d.put("Note: This is a root URL\n")
259 d.put("Status: checked\n")
262 d.put("Status: to check\n")
265 d.put("Status: unknown (!)\n")
268 d.put("Bad links from this page:\n")
271 d.put(" HREF %s" % self.format_url(link))
272 if self.format_url(link) != rawlink: d.put(" (%s)" %rawlink)
273 d.put("\
390 def put(self, s): member in class:LogPanel
[all...]
H A Dwsgui.py44 self.msgq.put(format)
57 self.msgq.put(None)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
213 put = state->window; \
216 if (out(out_desc, put, left)) { \
259 unsigned char FAR *put; /* next output */ local
286 put = state->window;
347 zmemcpy(put, next, copy);
351 put += copy;
517 *put++ = (unsigned char)(state->length);
590 from = put
[all...]
H A Dinflate.c461 put = strm->next_out; \
472 strm->next_out = put; \
555 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
611 unsigned char FAR *put; /* next output */ local
886 zmemcpy(put, next, copy);
890 put += copy;
1142 *put++ = 0;
1157 from = put - state->offset;
1164 *put++ = *from++;
1170 *put
[all...]
H A Ddeflate.c470 int put; local
477 put = Buf_size - s->bi_valid;
478 if (put > bits)
479 put = bits;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
481 s->bi_valid += put;
483 value >>= put; local
484 bits -= put;
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1220 * necessary to put mor
[all...]
H A Dgzwrite.c170 unsigned put = len; local
240 /* input was all buffered or compressed (put will fit in int) */
241 return (int)put;
341 /* do the printf() into the input buffer, put length in len */
426 /* do the printf() into the input buffer, put length in len */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dinfback.c121 put = strm->next_out; \
132 strm->next_out = put; \
204 put = state->window; \
207 if (out(out_desc, put, left)) { \
250 unsigned char FAR *put; /* next output */ local
277 put = state->window;
338 zmemcpy(put, next, copy);
342 put += copy;
500 *put++ = (unsigned char)(state->length);
573 from = put
[all...]
H A Dinflate.c405 put = strm->next_out; \
416 strm->next_out = put; \
504 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
560 unsigned char FAR *put; /* next output */ local
826 zmemcpy(put, next, copy);
830 put += copy;
1060 from = put - state->offset;
1067 *put++ = *from++;
1073 *put++ = (unsigned char)(state->length);
1085 UPDATE(state->check, put
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
H A Dmarkov.py12 def put(self, seq): member in class:Markov
89 m.put(data)
/device/sample/products/
H A Dsample_addon.mk1 # List of apps and optional libraries (Java and native) to put in the add-on system image.
33 # Name of the doc to generate and put in the add-on. This must match the name defined
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DQueue.py18 "Exception raised by Queue.put(block=0)/put_nowait()."
38 # a thread waiting to put is notified then.
54 for every item that had been put() into the queue).
107 def put(self, item, block=True, timeout=None): member in class:Queue
114 Otherwise ('block' is false), put an item on the queue if a free slot
148 return self.put(item, False)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
H A DSynch.py177 def put(self, item): member in class:_test.Buffer
202 self.put(item) # Recursive call to test the locking
215 print "put", i
216 buffer.put(i)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Drcvs.py147 self.put(message)
186 def put(self, message = ""): member in class:MyFile
191 messages = self.proxy.put(self.file, data, message)
H A DRCSProxy.py107 def put(self, name_rev, data, message=None): member in class:RCSProxyLocal
H A Drrcs.py29 print " ci|put # checkin the given files"
57 messages = x.put(fn, data, message)
147 'put': ('', checkin),
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
H A Dinflate.c478 put = strm->next_out; \
489 strm->next_out = put; \
572 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
628 unsigned char FAR *put; /* next output */ local
909 zmemcpy(put, next, copy);
913 put += copy;
1165 *put++ = 0;
1180 from = put - state->offset;
1187 *put++ = *from++;
1193 *put
[all...]
/device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/BaseFspApiLib/X64/
H A DThunk64To32.asm190 mov eax, ebx ; put return status to EAX
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
H A DBuild_IFWI.bat185 echo and put openssl.exe there, to generate final capsule image.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A DcPickle.c801 put(Picklerobject *self, PyObject *ob) function
1299 if (put(self, args) < 0)
1467 if (put(self, args) < 0)
1544 * which case we'll pop everything we put on the stack, and fetch
1606 if (put(self, args) >= 0)
1750 if (put(self, args) >= 0)
2001 if (put(self, args) >= 0)
2151 if (put(self, args) < 0)
2306 if (put(self, args) < 0)
2540 else if (put(sel
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A DcPickle.c770 put(Picklerobject *self, PyObject *ob) function
1268 if (put(self, args) < 0)
1436 if (put(self, args) < 0)
1513 * which case we'll pop everything we put on the stack, and fetch
1575 if (put(self, args) >= 0)
1719 if (put(self, args) >= 0)
1970 if (put(self, args) >= 0)
2120 if (put(self, args) < 0)
2275 if (put(self, args) < 0)
2508 else if (put(sel
[all...]

Completed in 323 milliseconds

12