summaryrefslogtreecommitdiffstats
path: root/mojo/system
Commit message (Expand)AuthorAgeFilesLines
* Mojo: Refactor Options struct validation some more.viettrungluu@chromium.org2014-06-0512-174/+375
* Mojo: Make Channel::OnFatalError() less spammy.viettrungluu@chromium.org2014-06-054-29/+40
* Mojo: Refactor the verification of various |Mojo...Options| structs.viettrungluu@chromium.org2014-06-058-62/+423
* Mojo: Specify/check alignment of pointers more carefully.viettrungluu@chromium.org2014-06-039-62/+263
* Revert of Mojo: Specify/check alignment of pointers more carefully. (https://...dalecurtis@chromium.org2014-05-319-250/+62
* Mojo: Specify/check alignment of pointers more carefully.viettrungluu@chromium.org2014-05-309-62/+250
* Mojo: Add multiprocess shared memory passing test.viettrungluu@chromium.org2014-05-301-0/+173
* Mojo: Implement passing of shared buffers across processes on POSIX.viettrungluu@chromium.org2014-05-308-25/+346
* RawChannel::Init(): handle the cleanup issue when the ScheduleRead() call in ...yzshen@chromium.org2014-05-291-1/+12
* Mojo: Remove extraneous .get()s in mojo/{embedder,system}.viettrungluu@chromium.org2014-05-2913-57/+57
* Mojo: Mac: Enable MultiprocessMessagePipeTest.PlatformHandlePassing.viettrungluu@chromium.org2014-05-291-7/+0
* Mojo: Refactor the sending of FDs (a.k.a. PlatformHandles) on POSIX.viettrungluu@chromium.org2014-05-287-64/+195
* Mojo: Move (shared) buffer types/constants/functions from mojo/public/c/syste...viettrungluu@chromium.org2014-05-283-2/+8
* Mojo: Move data pipe types/constants/functions from mojo/public/c/system/core...viettrungluu@chromium.org2014-05-283-1/+4
* Mojo: Move message pipe types/constants/functions from mojo/public/c/system/c...viettrungluu@chromium.org2014-05-286-4/+7
* Mojo: Move common type/constant definitions from mojo/public/c/system/core.h ...viettrungluu@chromium.org2014-05-279-8/+9
* Mojo: Add a RawChannel::EnqueueMessage() that can be overridden by subclasses.viettrungluu@chromium.org2014-05-233-23/+37
* Mojo: Make channel.cc and friend log at a less verbose level.thestig@chromium.org2014-05-222-3/+3
* Mojo: Make PlatformChannelRecvmsg() append handles to a deque instead.viettrungluu@chromium.org2014-05-211-11/+29
* Mojo: Add a multiprocess platform handle passing test.viettrungluu@chromium.org2014-05-191-2/+115
* Mojo: Fix some platform handle passing bugs and add a test.viettrungluu@chromium.org2014-05-1515-82/+276
* Mojo: Fiddle with EpsilonTimeout() some more.viettrungluu@chromium.org2014-05-141-4/+13
* Mojo: Make a deleter for PlatformHandleVectors that closes all the handles.viettrungluu@chromium.org2014-05-147-23/+18
* Mojo: Base our epsilon timeouts off of TestTimeouts::tiny_timeout().viettrungluu@chromium.org2014-05-146-223/+193
* Mojo: Add a dispatcher that wraps a PlatformHandle (for use by the embedder).viettrungluu@chromium.org2014-05-139-32/+284
* Mojo: (Theoretically) implement the read side of platform handle passing.viettrungluu@chromium.org2014-05-1311-51/+175
* Mojo: Delete some old, unused code.viettrungluu@chromium.org2014-05-123-39/+17
* Mojo: (Theoretically) implement sending PlatformHandles (i.e., FDs) across a ...viettrungluu@chromium.org2014-05-097-102/+229
* Mojo: Add the ability to allocate space for platform handle info in Transport...viettrungluu@chromium.org2014-05-098-17/+86
* Revert 269197 "Mojo: Add the ability to allocate space for platf..."marja@chromium.org2014-05-098-80/+13
* Mojo: Add the ability to allocate space for platform handle info in Transport...viettrungluu@chromium.org2014-05-098-13/+80
* Mojo: Make RawChannelPosix::Read() use PlatformChannelRecvmsg() (instead of r...viettrungluu@chromium.org2014-05-073-27/+40
* Mojo: Initialize MessageInTransit::Header::unused.viettrungluu@chromium.org2014-05-052-0/+3
* Mojo: Add/use |typedef std::vector<scoped_refptr<Dispatcher> > DispatcherVector.viettrungluu@chromium.org2014-05-0519-95/+82
* Mojo: Factor MessageInTransit secondary buffer stuff out into a separate class.viettrungluu@chromium.org2014-05-0310-361/+500
* Mojo: Small fixes/cleanup to MessageInTransit, before I factor out the second...viettrungluu@chromium.org2014-05-012-46/+48
* Mojo: Minor cleanup (of message_in_transit.cc and message_pipe.*).viettrungluu@chromium.org2014-04-305-120/+141
* Mojo: More Channel tests.viettrungluu@chromium.org2014-04-282-3/+143
* Mojo: Fix incorrect PLOG in raw_channel_win.cc.viettrungluu@chromium.org2014-04-261-3/+5
* Mojo: Windows: Enable Channel::Shutdown() on fatal error.viettrungluu@chromium.org2014-04-251-6/+0
* Mojo: Start writing some unit tests for mojo::system::Channel.viettrungluu@chromium.org2014-04-253-3/+187
* Mojo: Handle "nested" Shutdown() in RawChannelWin.viettrungluu@chromium.org2014-04-252-33/+26
* Mojo: Add RawChannel tests for calling Shutdown() from OnReadMessage()/OnFata...viettrungluu@chromium.org2014-04-244-21/+166
* Mojo: Fix some more Channel shutdown bugs.viettrungluu@chromium.org2014-04-233-16/+21
* Mojo: Kill endpoints on Channel Shutdown().viettrungluu@chromium.org2014-04-222-51/+68
* Mojo: Make some attempts towards fixing remote message pipe closure.viettrungluu@chromium.org2014-04-1814-132/+389
* Make mojo_system static and mojo_system_impl a component, never use bothdavemoore@chromium.org2014-04-1518-277/+446
* Revert 263717 "Make mojo_system static and mojo_system_impl a co..."fischman@chromium.org2014-04-1418-446/+277
* Make mojo_system static and mojo_system_impl a component, never use bothdavemoore@chromium.org2014-04-1418-277/+446
* Mojo: Make it not CHECK-fail on receiving a bogus channel control message.viettrungluu@chromium.org2014-04-125-15/+32