Home
last modified time | relevance | path

Searched refs:marshalled (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Programs/
D_freeze_importlib.c43 PyObject *code = NULL, *marshalled = NULL; in main() local
109 marshalled = PyMarshal_WriteObjectToString(code, Py_MARSHAL_VERSION); in main()
111 if (marshalled == NULL) in main()
114 assert(PyBytes_CheckExact(marshalled)); in main()
115 data = (unsigned char *) PyBytes_AS_STRING(marshalled); in main()
116 data_size = PyBytes_GET_SIZE(marshalled); in main()
143 Py_CLEAR(marshalled); in main()
164 if (marshalled) in main()
165 Py_DECREF(marshalled); in main()
/external/llvm-project/llvm/unittests/Option/
DOpts.td48 def marshalled_flag_d : Flag<["-"], "marshalled-flag-d">,
50 def marshalled_flag_c : Flag<["-"], "marshalled-flag-c">,
53 def marshalled_flag_b : Flag<["-"], "marshalled-flag-b">,
56 def marshalled_flag_a : Flag<["-"], "marshalled-flag-a">,
/external/python/cpython3/Doc/c-api/
Dmarshal.rst11 read the data back. Files used to store marshalled data must be opened in
37 Return a bytes object containing the marshalled representation of *value*.
41 The following functions allow marshalled values to be read back in.
/external/grpc-grpc/src/ruby/lib/grpc/generic/
Dactive_call.rb191 def remote_send(req, marshalled = false) argument
193 GRPC.logger.debug("sending #{req}, marshalled? #{marshalled}")
194 payload = marshalled ? req : @marshal.call(req)
/external/python/cpython2/Doc/c-api/
Dmarshal.rst11 read the data back. Files used to store marshalled data must be opened in
43 Return a string object containing the marshalled representation of *value*.
49 The following functions allow marshalled values to be read back in.
/external/python/cpython3/Doc/library/
Dmarshal.rst47 marshalled and unmarshalled.
79 If an object containing an unsupported type was marshalled with :func:`dump`,
Dasynchat.rst172 marshalled, after setting the channel terminator to ``None`` to ensure that
Dxmlrpc.client.rst86 Types that are conformable (e.g. that can be marshalled through XML),
/external/python/cpython2/Doc/library/
Dmarshal.rst48 :exc:`StopIteration` can also be marshalled and unmarshalled.
94 If an object containing an unsupported type was marshalled with :func:`dump`,
Dasynchat.rst197 marshalled, after setting the channel terminator to ``None`` to ensure that
Dxmlrpclib.rst78 Types that are conformable (e.g. that can be marshalled through XML),
139 *__dict__* attribute and don't have a base class that is marshalled in a
/external/libchrome/base/android/proguard/
Dchromium_apk.flags18 # Don't obfuscate Parcelables as they might be marshalled outside Chrome.
Dchromium_code.flags64 # Don't obfuscate Parcelables as they might be marshalled outside Chrome.
/external/mesa3d/docs/relnotes/
D20.1.0.rst3076 - glthread: autogenerate prototypes for custom-marshalled functions
/external/python/cpython3/Misc/
DHISTORY8516 - Issue #12291: You can now load multiple marshalled objects from a stream,
8517 with other data interleaved between marshalled objects.
18724 - set and frozenset objects can now be marshalled. SF #1098985.
/external/python/cpython2/Misc/
DHISTORY1340 - set and frozenset objects can now be marshalled. SF #1098985.