Searched defs:raw (Results 1 - 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
H A D_iomodule.c66 "writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
69 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
77 "interface to a buffered raw stream (`BufferedIOBase`). Finally, StringIO\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
309 PyObject *raw, *modeobj = NULL, *buffer, *wrapper, *result = NULL;
418 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type,
420 if (raw == NULL)
422 result = raw;
430 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL);
452 PyObject *res = PyObject_CallMethod(raw, "filen
306 PyObject *raw, *modeobj = NULL, *buffer, *wrapper, *result = NULL; local
[all...]
H A Dbufferedio.c27 "BlockingIOError if the underlying raw stream is in non-blocking\n"
28 "mode and not ready; unlike their raw counterparts, they will never\n"
77 "Disconnect this buffer from its underlying raw stream and return it.\n"
79 "After the raw stream has been detached, the buffer is in an unusable\n"
94 "If the argument is positive, and the underlying raw stream is\n"
95 "not 'interactive', multiple raw reads may be issued to satisfy\n"
97 "interactive raw streams (as well as sockets and pipes), at most\n"
98 "one raw read will be issued, and a short result does not imply\n"
103 "Returns None if the underlying raw stream was open in non-blocking\n"
114 "to the underlying raw strea
195 PyObject *raw; member in struct:__anon2731
500 PyObject *raw, *res; local
1254 PyObject *raw; local
1674 PyObject *raw; local
2327 PyObject *raw; local
[all...]
H A Dtextio.c703 /* Cache raw object if it's a FileIO object */
704 PyObject *raw; member in struct:__anon2738
829 PyObject *buffer, *raw; local
863 Py_CLEAR(self->raw);
1008 raw = PyObject_GetAttrString(buffer, "raw");
1009 /* Cache the raw FileIO object to speed up 'closed' checks */
1010 if (raw == NULL) {
1016 else if (Py_TYPE(raw) == &PyFileIO_Type)
1017 self->raw
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A D_pyio.py60 encoding used is platform dependent. (For reading and writing raw
188 raw = FileIO(file,
195 if buffering == 1 or buffering < 0 and raw.isatty():
201 bs = os.fstat(raw.fileno()).st_blksize
211 return raw
214 buffer = BufferedRandom(raw, buffering)
216 buffer = BufferedWriter(raw, buffering)
218 buffer = BufferedReader(raw, buffering)
526 """Base class for raw binary I/O."""
598 BlockingIOError if the underlying raw strea
746 def raw(self): member in class:_BufferedIOMixin
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A D_iomodule.c66 "writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
69 "BufferedIOBase deals with buffering on a raw byte stream (RawIOBase). Its\n"
77 "interface to a buffered raw stream (`BufferedIOBase`). Finally, StringIO\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
308 PyObject *raw, *modeobj = NULL, *buffer = NULL, *wrapper = NULL;
417 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type,
419 if (raw == NULL)
428 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL);
450 PyObject *res = PyObject_CallMethod(raw, "fileno", NULL);
470 /* if not buffering, returns the raw fil
305 PyObject *raw, *modeobj = NULL, *buffer = NULL, *wrapper = NULL; local
[all...]
H A Dbufferedio.c27 "BlockingIOError if the underlying raw stream is in non-blocking\n"
28 "mode and not ready; unlike their raw counterparts, they will never\n"
77 "Disconnect this buffer from its underlying raw stream and return it.\n"
79 "After the raw stream has been detached, the buffer is in an unusable\n"
94 "If the argument is positive, and the underlying raw stream is\n"
95 "not 'interactive', multiple raw reads may be issued to satisfy\n"
97 "interactive raw streams (as well as sockets and pipes), at most\n"
98 "one raw read will be issued, and a short result does not imply\n"
103 "Returns None if the underlying raw stream was open in non-blocking\n"
114 "to the underlying raw strea
195 PyObject *raw; member in struct:__anon3044
484 PyObject *raw, *res; local
1236 PyObject *raw; local
1646 PyObject *raw; local
2271 PyObject *raw; local
[all...]
H A Dtextio.c687 /* Cache raw object if it's a FileIO object */
688 PyObject *raw; member in struct:__anon3051
813 PyObject *buffer, *raw; local
847 Py_CLEAR(self->raw);
992 raw = PyObject_GetAttrString(buffer, "raw");
993 /* Cache the raw FileIO object to speed up 'closed' checks */
994 if (raw == NULL) {
1000 else if (Py_TYPE(raw) == &PyFileIO_Type)
1001 self->raw
[all...]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/
H A DQNCSmm.h111 UINTN raw; member in union:__anon8935::__anon8936
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlgc.c215 char *raw = cast(char *, luaM_newobject(L, novariant(tt), sz)); local
216 GCObject *o = obj2gco(raw + offset);
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/
H A DDdrMemoryController.h161 UINT32 raw; member in union:_RegDRP
177 UINT32 raw; member in union:__anon8862
190 UINT32 raw; member in union:__anon8864
208 UINT32 raw; member in union:__anon8866
/device/google/contexthub/firmware/os/core/
H A DhostIntf.c97 // buffer.sensorType, but in the case of raw, this gets set to the base
104 uint8_t raw : 1; member in struct:ActiveSensor
763 mActiveSensorTable[j].raw = true;
786 if (mActiveSensorTable[j].raw)
1017 // Bias not supported in raw format; treat as regular format triple samples (potentially
1437 if (sensor->raw)
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/PxeDhcp4/
H A DPxeDhcp4.h112 UINT8 raw[1500]; member in union:_DHCP4_PACKET
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dtypeobject.c75 PyObject *raw, *ref; local
81 raw = type->tp_subclasses;
82 if (raw != NULL) {
83 n = PyList_GET_SIZE(raw);
85 ref = PyList_GET_ITEM(raw, i);
2664 PyObject *list, *raw, *ref; local
2670 raw = type->tp_subclasses;
2671 if (raw == NULL)
2673 assert(PyList_Check(raw));
2674 n = PyList_GET_SIZE(raw);
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dtypeobject.c75 PyObject *raw, *ref; local
81 raw = type->tp_subclasses;
82 if (raw != NULL) {
83 n = PyList_GET_SIZE(raw);
85 ref = PyList_GET_ITEM(raw, i);
2637 PyObject *list, *raw, *ref; local
2643 raw = type->tp_subclasses;
2644 if (raw == NULL)
2646 assert(PyList_Check(raw));
2647 n = PyList_GET_SIZE(raw);
[all...]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
H A Dgen5_iosf_sb_definitions.h54 uint32_t raw; member in union:__anon8884
76 uint32_t raw; member in union:__anon8886
101 uint32_t raw; member in union:__anon8888
122 uint32_t raw; member in union:__anon8890
136 uint32_t raw; member in union:__anon8892
159 uint32_t raw; member in union:__anon8894
179 uint32_t raw; member in union:__anon8896
202 uint32_t raw; member in union:__anon8898
223 uint32_t raw; member in union:__anon8900
241 uint32_t raw; member in union:__anon8902
258 uint32_t raw; member in union:__anon8904
274 uint32_t raw; member in union:__anon8906
293 uint32_t raw; member in union:__anon8908
326 uint32_t raw; member in union:__anon8910
347 uint32_t raw; member in union:__anon8912
372 uint32_t raw; member in union:__anon8914
391 uint32_t raw; member in union:__anon8916
406 uint32_t raw; member in union:__anon8918
[all...]

Completed in 547 milliseconds