Searched refs:returned (Results 101 - 125 of 139) sorted by last modified time

123456

/external/chromium_org/third_party/libevent/
H A Dhttp.c272 * The returned string needs to be freed by the caller.
2042 * The returned string must be freed by the caller.
/external/chromium_org/third_party/libxml/src/
H A Druntest.c1681 fprintf(SAXdebug, "xmlSAXUserParseFile returned error %d\n", ret);
1700 fprintf(SAXdebug, "xmlSAXUserParseFile returned error %d\n", ret);
H A DtestHTML.c654 fprintf(stdout, "htmlSAXParseFile returned non-NULL\n");
684 fprintf(stdout, "htmlSAXParseFile returned non-NULL\n");
694 fprintf(stdout, "htmlSAXParseFile returned non-NULL\n");
704 fprintf(stdout, "htmlSAXParseFile returned non-NULL\n");
/external/chromium_org/third_party/sinonjs/src/
H A Dsinon.js1323 returned: function returned(value) {
1777 delegateToCalls("returned", true);
1778 delegateToCalls("alwaysReturned", false, "returned");
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c665 ** verify that values returned by these interfaces match the macros in
704 ** prefix is omitted from any strings returned by
867 ** on error message strings returned through the 5th parameter of
1423 ** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is
1720 ** xRealloc is always a value returned by a prior call to xRoundup.
2024 ** when the "current value" returned by
2079 ** have ever occurred on that database connection, zero is returned.
2082 ** row is returned by this routine as long as the trigger is running.
2083 ** But once the trigger terminates, the value returned by this routine
2087 ** successful [INSERT] and does not change the value returned b
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c320 ** The number of bytes written is returned.
353 ** 32-bit integer before it is returned.
705 ** The pointer returned points to memory obtained from sqlite3_malloc(). It
736 ** being returned directly each column of text data is passed to an SQL
739 ** string is returned:
743 ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It
747 ** a NULL pointer is returned). Otherwise, if an OOM error is encountered
748 ** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If
778 ** user-defined text columns, the following string is returned:
782 ** The pointer returned point
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dexpr.c22 ** affinity of that column is returned. Otherwise, 0x00 is returned,
717 ** The value returned includes space to create a copy of the Expr struct
843 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a
976 ** NULL is returned. If non-NULL is returned, then it is guaranteed
1381 ** The returned value of this function indicates the b-tree type, as follows:
2149 ** not guaranteed. The location of the column value is returned.
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.cc63 DLL_Init(&large_.returned);
66 DLL_Init(&free_[i].returned);
82 // Alternatively, maybe there's a usable returned span.
83 ll = &free_[s].returned;
130 for (Span* span = large_.returned.next;
131 span != &large_.returned;
244 // is implicitly committed. If the adjacents spans are on the "returned"
266 // We're about to put the merge span into the returned freelist and call
310 DLL_Prepend(&list->returned, span);
409 result->returned_length[s] = DLL_Length(&free_[s].returned);
[all...]
H A Dpage_heap.h121 // REQUIRES: span was returned by earlier call to New() and
127 // REQUIRES: span was returned by an earlier call to New()
156 uint64_t unmapped_bytes; // Total bytes on returned freelists
164 // normal and returned free lists for that size.
235 // has been returned to the system.
238 Span returned; member in struct:tcmalloc::PageHeap::SpanList
257 // length exactly "n" and mark it as non-free so it can be returned
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc63 DLL_Init(&large_.returned);
66 DLL_Init(&free_[i].returned);
82 // Alternatively, maybe there's a usable returned span.
83 ll = &free_[s].returned;
129 for (Span* span = large_.returned.next;
130 span != &large_.returned;
211 // we do not coalesce "returned" spans with "normal" spans.
249 DLL_Prepend(&list->returned, span);
348 result->returned_length[s] = DLL_Length(&free_[s].returned);
360 for (Span* s = large_.returned
[all...]
H A Dpage_heap.h113 // REQUIRES: span was returned by earlier call to New() and
119 // REQUIRES: span was returned by an earlier call to New()
148 uint64_t unmapped_bytes; // Total bytes on returned freelists
154 // normal and returned free lists for that size.
223 // has been returned to the system.
226 Span returned; member in struct:tcmalloc::PageHeap::SpanList
246 // length exactly "n" and mark it as non-free so it can be returned
/external/chromium_org/native_client_sdk/src/doc/devguide/devcycle/
H A Ddynamic-loading.rst427 **undefined reference to 'dlopen' collect2: ld returned 1 exit status**
/external/chromium_org/sandbox/win/tests/common/
H A Dtest_utils.cc41 DWORD returned; local
54 NULL, 0, &returned, NULL)) {
63 DWORD returned; local
67 &returned, NULL)) {
/external/chromium_org/mojo/services/public/cpp/surfaces/lib/
H A Dsurfaces_type_converters.cc508 ReturnedResourcePtr returned = ReturnedResource::New(); local
509 returned->id = input.id;
510 returned->sync_point = input.sync_point;
511 returned->count = input.count;
512 returned->lost = input.lost;
513 return returned.Pass();
520 cc::ReturnedResource returned; local
521 returned.id = input->id;
522 returned.sync_point = input->sync_point;
523 returned
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema_unittest.cc146 static const char kNoErrorReturned[] = "No error returned.";
150 bool returned = schema.Validate(value, strategy, NULL, &error); local
151 ASSERT_EQ(expected_return_value, returned) << source << ": " << error;
158 returned =
160 EXPECT_EQ(expected_return_value, returned) << source << ": " << error;
163 EXPECT_EQ(touched, !strictly_valid && returned) << source;
183 bool returned = schema.Validate(value, SCHEMA_STRICT, &error_path, &error); local
184 ASSERT_FALSE(returned) << error_path;
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dindex.php63 * @param bool $returnResponseHeaders True if resp headers should be returned.
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
H A Dport_monitor.cc319 DWORD* returned) {
346 if (returned == NULL) {
347 LOG(ERROR) << "returned should not be NULL.";
377 *returned = 1;
313 Monitor2EnumPorts(HANDLE, wchar_t*, DWORD level, BYTE* ports, DWORD ports_size, DWORD* needed_bytes, DWORD* returned) argument
H A Dport_monitor.h23 // returned by InitializePrintMonitor2. The prototypes and behaviors
32 DWORD* returned);
71 // returned by InitializePrintMonitorUI. The prototypes and behaviors
H A Dport_monitor_unittest.cc126 DWORD returned = 0; local
133 &returned));
136 EXPECT_EQ(0u, returned);
146 &returned));
148 EXPECT_EQ(1u, returned);
153 returned = 0;
161 &returned));
164 EXPECT_EQ(0u, returned);
174 &returned));
176 EXPECT_EQ(1u, returned);
[all...]
H A Dspooler_win.h22 DWORD* returned);
/external/chromium_org/base/files/
H A Dfile_util_unittest.cc96 DWORD returned; local
110 NULL, 0, &returned, NULL)) {
119 DWORD returned; local
123 &returned, NULL)) {
203 // The file should not be returned twice.
205 << "Same file returned twice";
/external/chromium_org/cc/layers/
H A Ddelegated_frame_provider.cc25 ReturnedResourceArray returned; local
26 TransferableResource::ReturnResources(frame_->resource_list, &returned);
27 resource_collection_->UnrefResources(returned);
59 ReturnedResourceArray returned; local
60 TransferableResource::ReturnResources(frame_->resource_list, &returned);
61 resource_collection_->UnrefResources(returned);
106 const ReturnedResourceArray& returned) {
107 resource_collection_->UnrefResources(returned);
105 UnrefResourcesOnMainThread( const ReturnedResourceArray& returned) argument
H A Ddelegated_frame_provider_unittest.cc149 ReturnedResourceArray returned; local
150 TransferableResource::ReturnResources(reffed, &returned);
185 frame_provider_->UnrefResourcesOnMainThread(returned);
187 frame_provider_->UnrefResourcesOnMainThread(returned);
189 frame_provider_->UnrefResourcesOnMainThread(returned);
193 frame_provider_->UnrefResourcesOnMainThread(returned);
207 ReturnedResourceArray returned; local
208 TransferableResource::ReturnResources(reffed, &returned);
227 frame_provider_->UnrefResourcesOnMainThread(returned);
228 frame_provider_->UnrefResourcesOnMainThread(returned);
249 ReturnedResourceArray returned; local
293 ReturnedResourceArray returned; local
[all...]
H A Ddelegated_frame_resource_collection.cc50 ReturnedResource returned; local
51 returned.id = it->first;
52 returned.count = it->second.refs_to_return;
53 returned.lost = true;
54 to_return.push_back(returned);
76 const ReturnedResourceArray& returned) {
84 for (size_t i = 0; i < returned.size(); ++i) {
86 resource_id_ref_count_map_.find(returned[i].id);
88 DCHECK_GE(it->second.refs_to_wait_for, returned[i].count);
89 it->second.refs_to_wait_for -= returned[
75 UnrefResources( const ReturnedResourceArray& returned) argument
115 UnrefResourcesOnImplThread( base::WeakPtr<DelegatedFrameResourceCollection> self, const ReturnedResourceArray& returned, BlockingTaskRunner* main_thread_task_runner) argument
[all...]
H A Ddelegated_frame_resource_collection.h21 // Called to inform the client that returned resources can be
41 void UnrefResources(const ReturnedResourceArray& returned);

Completed in 619 milliseconds

123456