Home
last modified time | relevance | path

Searched refs:writeable (Results 1 – 25 of 67) sorted by relevance

123

/external/grpc-grpc/src/objective-c/RxLibrary/
DGRXConcurrentWriteable.m25 @property(atomic, strong) id<GRXWriteable> writeable;
30 // This ensures that writesFinishedWithError: is only sent once to the writeable.
39 - (instancetype)initWithWriteable:(id<GRXWriteable>)writeable
43 _writeable = writeable;
48 - (instancetype)initWithWriteable:(id<GRXWriteable>)writeable {
49 return [self initWithWriteable:writeable dispatchQueue:dispatch_get_main_queue()];
55 // enqueued messages into noops, cancellation nillifies the writeable property. If we get it
57 id<GRXWriteable> writeable = self.writeable;
58 if (writeable) {
59 [writeable writeValue:value];
[all …]
DGRXBufferedPipe.m22 @property(atomic) id<GRXWriteable> writeable;
56 [weakSelf.writeable writeValue:value];
78 self.writeable = nil;
102 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
103 self.writeable = writeable;
109 [self.writeable writesFinishedWithError:errorOrNil];
DGRXImmediateSingleWriter.m40 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
42 _writeable = writeable;
43 [writeable writeValue:_value];
50 id<GRXWriteable> writeable = _writeable;
52 [writeable writesFinishedWithError:nil];
DGRXForwardingWriter.m48 // This is used to send a completion or an error to the writeable. It nillifies
52 id<GRXWriteable> writeable = _writeable;
54 [writeable writesFinishedWithError:errorOrNil];
91 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
92 _writeable = writeable;
DGRXImmediateWriter.m86 // If the writeable has a reference to us, it might change our state to paused or finished.
94 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
96 _writeable = writeable;
104 id<GRXWriteable> writeable = _writeable;
106 [writeable writesFinishedWithError:errorOrNil];
121 // means one doesn't wish the writeable to be messaged anymore.
DGRXConcurrentWriteable.h41 - (instancetype)initWithWriteable:(id<GRXWriteable>)writeable
43 - (instancetype)initWithWriteable:(id<GRXWriteable>)writeable;
DGRXWriter.h97 - (void)startWithWriteable:(id<GRXWriteable>)writeable;
DGRXWriter.m23 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
/external/grpc-grpc/src/objective-c/tests/
DRxLibraryUnitTests.m73 id<GRXWriteable> writeable = [GRXWriteable writeableWithSingleHandler:handler.block];
74 [writeable writeValue:anyValue];
75 [writeable writesFinishedWithError:nil];
89 id<GRXWriteable> writeable = [GRXWriteable writeableWithSingleHandler:handler.block];
90 [writeable writesFinishedWithError:anyError];
105 id<GRXWriteable> writeable = [GRXWriteable writeableWithSingleHandler:handler.block];
106 [writeable writeValue:anyValue];
107 [writeable writesFinishedWithError:anyError];
121 id<GRXWriteable> writeable = [GRXWriteable writeableWithSingleHandler:handler.block];
122 [writeable writeValue:anyValue];
[all …]
/external/icu/icu4c/source/samples/ustring/
Dustring.cpp419 static UChar writeable[]={ variable
448 one+=UnicodeString(writeable, UPRV_LENGTHOF(writeable)); in demoUnicodeStringStorage()
471 one.setTo(FALSE, writeable, UPRV_LENGTHOF(writeable)); in demoUnicodeStringStorage()
484 UnicodeString four(writeable, UPRV_LENGTHOF(writeable), UPRV_LENGTHOF(writeable)); in demoUnicodeStringStorage()
490 "after modification\n", i, writeable[i]); in demoUnicodeStringStorage()
498 "modification of string copy\n", i, writeable[i]); in demoUnicodeStringStorage()
501 one.setTo(writeable, UPRV_LENGTHOF(writeable), UPRV_LENGTHOF(writeable)); in demoUnicodeStringStorage()
511 one.charAt(1), writeable[1]); in demoUnicodeStringStorage()
515 if(one.length()<UPRV_LENGTHOF(writeable)) { in demoUnicodeStringStorage()
518 i=UPRV_LENGTHOF(writeable); in demoUnicodeStringStorage()
[all …]
/external/bcc/examples/lua/
Duprobe-tailkt.lua29 local writeable, watch_key, klen = 'any', arg[2] or '*', 80
30 if arg[1] == 'get' then writeable = 0
31 elseif arg[1] == 'set' then writeable = 1
45 if writeable ~= 'any' then
46 if ptregs.parm5 ~= writeable then return end
/external/python/pybind11/tests/
Dtest_eigen.py92 zr.flags.writeable = False
124 z.flags.writeable = False
127 assert not m.fixed_r_const().flags.writeable
230 assert not a_get1.flags.owndata and a_get1.flags.writeable
233 assert not a_get2.flags.owndata and a_get2.flags.writeable
237 assert not a_view1.flags.owndata and not a_view1.flags.writeable
241 assert not a_view2.flags.owndata and not a_view2.flags.writeable
246 assert a_copy1.flags.owndata and a_copy1.flags.writeable
251 assert a_copy2.flags.owndata and a_copy2.flags.writeable
257 assert not a_ref1.flags.owndata and a_ref1.flags.writeable
[all …]
Dtest_numpy_array.py41 assert m.writeable(a)
48 a.flags.writeable = False
62 assert not m.writeable(a)
114 arr.flags.writeable = False
173 assert a.flags.writeable == b.flags.writeable
182 if a.flags.writeable and a.ndim == 2:
197 a1.flags.writeable = False
/external/vboot_reference/futility/
Dmisc.c233 enum futil_file_err futil_map_file(int fd, int writeable, in futil_map_file() argument
258 if (writeable) in futil_map_file()
267 writeable ? "output" : "input", in futil_map_file()
277 enum futil_file_err futil_unmap_file(int fd, int writeable, in futil_unmap_file() argument
283 if (writeable && in futil_unmap_file()
Dfutility.h134 enum futil_file_err futil_map_file(int fd, int writeable,
136 enum futil_file_err futil_unmap_file(int fd, int writeable,
/external/grpc-grpc/src/objective-c/ProtoRPC/
DProtoRPC.m84 // A writeable that parses the proto messages received.
106 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
107 [super startWithWriteable:writeable];
/external/v8/src/heap/cppgc/
Dpage-memory.h50 PageMemory(MemoryRegion overall, MemoryRegion writeable) in PageMemory() argument
51 : overall_(overall), writable_(writeable) { in PageMemory()
52 DCHECK(overall.Contains(writeable)); in PageMemory()
/external/adhd/cras/src/common/
Dbyte_buffer.h114 unsigned int *writeable) in buf_write_pointer_size() argument
116 *writeable = buf_writable(buf); in buf_write_pointer_size()
/external/autotest/client/common_lib/cros/
Dsmbprovider.py233 def open_file(self, mount_id, file_path, writeable): argument
252 proto.writeable = writeable
/external/grpc-grpc/src/objective-c/GRPCClient/
DGRPCCall.m69 // enforce, as we're writing the received messages into the writeable:
83 // all. This wrapper over our actual writeable ensures thread-safety and
457 - (void)startCallWithWriteable:(id<GRXWriteable>)writeable {
459 [[GRXConcurrentWriteable alloc] initWithWriteable:writeable dispatchQueue:_responseQueue];
477 - (void)startWithWriteable:(id<GRXWriteable>)writeable {
499 [strongSelf startCallWithWriteable:writeable];
504 [self startCallWithWriteable:writeable];
519 // means one doesn't wish the writeable to be messaged anymore.
/external/python/pybind11/docs/advanced/cast/
Deigen.rst50 can be mapped *and* if the numpy array is writeable (that is
51 ``a.flags.writeable`` is true). Any access (including modification) made to
85 sets the numpy array's ``writeable`` flag to false.
115 m = a.get_matrix() # flags.writeable = True, flags.owndata = False
116 v = a.view_matrix() # flags.writeable = False, flags.owndata = False
117 c = a.copy_matrix() # flags.writeable = True, flags.owndata = True
135 readonly-status of the returned value, marking the numpy array as non-writeable
/external/autotest/client/site_tests/enterprise_SmbProviderDaemon/
Denterprise_SmbProviderDaemon.py250 def _check_open_file(self, mount_id, file_path, writeable): argument
263 writeable)
/external/u-boot/board/imgtec/xilfpga/
DREADME34 The BootRAM is a writeable "RAM" in FPGA at 0x1FC0_0000.
/external/minijail/
Dlibminijail.h278 int writeable);
/external/antlr/runtime/ObjC/Framework/
DREADME.rtf16 Also be sure that all necessary files are writeable, otherwise the build will fail silently\

123