summaryrefslogtreecommitdiffstats
path: root/mojo/system
Commit message (Expand)AuthorAgeFilesLines
* Revert 288259 "Changed PLOG to VPLOG"viettrungluu@chromium.org2014-08-081-1/+1
* Changed PLOG to VPLOGgiji.g@samsung.com2014-08-081-1/+1
* RawChannel::OnWriteCompletedNoLock(): change a DCHECK to CHECK.yzshen@chromium.org2014-08-081-1/+1
* Revert 286239 "Reland r285211: "Debugging RawChannelWin: replace..."yzshen@chromium.org2014-08-072-174/+82
* Mojo: Make Dispatcher::AddWaiter() (etc.) return the current HandleSignalsSta...viettrungluu@chromium.org2014-07-3129-201/+454
* Mojo: Make Dispatcher::RemoveWaiter() (etc.) return the current HandleSignals...viettrungluu@chromium.org2014-07-3130-154/+520
* Mojo: Add a GetHandleSignalsState() method to Dispatcher.viettrungluu@chromium.org2014-07-3025-65/+137
* Reland r285211: "Debugging RawChannelWin: replace DCHECK with CHECK and recor...viettrungluu@chromium.org2014-07-292-82/+174
* Temporary revert of r285211: "Debugging RawChannelWin: replace DCHECK with CH...viettrungluu@chromium.org2014-07-292-223/+127
* Mojo: clang-format mojo/system/*.{cc,h} ...viettrungluu@chromium.org2014-07-2958-1667/+2097
* Mojo: Convert MemoryTest.Invalid (-> InvalidDeath) to new user pointer handling.viettrungluu@chromium.org2014-07-292-67/+134
* Mojo: Fix Options struct alignment checking on Windows.viettrungluu@chromium.org2014-07-282-18/+14
* Mojo: Change includes of "base/basictypes.h" to <stdint.h> and/or "base/macro...viettrungluu@chromium.org2014-07-2818-24/+23
* Mojo: Convert MemoryTest.Valid to the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-286-171/+154
* Convert verification of options structs to use the new user pointer handling ...viettrungluu@chromium.org2014-07-2717-383/+426
* Convert WriteData...() to use the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-2612-87/+141
* Convert ReadData...() to use the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-2613-135/+201
* Convert WriteMessage...() to use the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-2517-166/+192
* Convert ReadMessage...() to use the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-2519-214/+185
* Convert BeginReadData...() to use the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-2512-66/+92
* Mojo: Modify plumbing for the WaitMany implementation.viettrungluu@chromium.org2014-07-252-16/+27
* Convert BeginWriteData...() to use the new user pointer handling (see r285350).viettrungluu@chromium.org2014-07-2512-71/+98
* Fix GN linking issues.brettw@chromium.org2014-07-241-0/+2
* Mojo: Change how we handle invalid pointer arguments (at the system layer).viettrungluu@chromium.org2014-07-249-320/+790
* Mojo: Switch mojo_system_unittests to its own run_all_unittests.cc.viettrungluu@chromium.org2014-07-241-0/+20
* Debugging RawChannelWin: replace DCHECK with CHECK and record write stats.yzshen@chromium.org2014-07-242-83/+175
* Disable all the tests that are flaking more than 5% on Windows builders.jam@chromium.org2014-07-232-4/+28
* Mojo: In Debug builds, log when a race condition in user code is likely obser...viettrungluu@chromium.org2014-07-231-0/+7
* mojo: Make InterfacePtr<> testable in if() statements without .get().erg@chromium.org2014-07-191-2/+2
* Mojo: EXPECT_EQ(MOJO_RESULT_OK, d->AddWaiter(...)) -> ASSERT_EQ(...) (etc.).viettrungluu@chromium.org2014-06-246-41/+41
* Mojo: Always use Now() instead of HighResNow().viettrungluu@chromium.org2014-06-242-4/+4
* Mojo: Fix flakiness in RemoteMessagePipeTest.HandlePassing.viettrungluu@chromium.org2014-06-241-3/+5
* Mojo: Delete temporary files created in tests.viettrungluu@chromium.org2014-06-233-4/+23
* Mojo: Rename (Mojo)WaitFlagsState -> (Mojo)HandleSignalsState.viettrungluu@chromium.org2014-06-1818-97/+108
* Mojo: Rename MOJO_WAIT_FLAG_... -> MOJO_HANDLE_SIGNAL_....viettrungluu@chromium.org2014-06-1814-229/+252
* Mojo: MojoWaitFlags -> MojoHandleSignals.viettrungluu@chromium.org2014-06-1831-157/+163
* Mojo: Remove extraneous end-of-file newlines.viettrungluu@chromium.org2014-06-141-1/+0
* Mojo: ~0 -> ~0u, since the compiler on Linux Trusty doesn't like the conversion.viettrungluu@chromium.org2014-06-141-4/+3
* Add more mojo targets to the GN build.brettw@chromium.org2014-06-131-0/+109
* Mojo: Update Waiter::Wait() to not put the context into the return value.viettrungluu@chromium.org2014-06-1315-236/+380
* Mojo: Rename/replace the wait (MojoResult) "wake result" with a (uint32_t) "c...viettrungluu@chromium.org2014-06-1328-108/+122
* Mojo: Remove old form of WaiterList::AwakeWaitersForStateChange().viettrungluu@chromium.org2014-06-122-15/+0
* Mojo: Plumb wait flags state through DataPipe::Awake...WaitersForStateChangeN...viettrungluu@chromium.org2014-06-122-18/+21
* Mojo: Wrap the satisfied/unsatisfied wait flags state in a single object.viettrungluu@chromium.org2014-06-1217-165/+202
* Mojo: Add a MojoCreateMessagePipeOptions struct parameter to MojoCreateMessag...viettrungluu@chromium.org2014-06-1010-46/+119
* Mojo: Remove redundant verification of Options pointers.viettrungluu@chromium.org2014-06-101-28/+10
* Mojo: Make default Options directly accessible.viettrungluu@chromium.org2014-06-105-53/+48
* 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