Searched refs:outPtr (Results 1 - 25 of 66) sorted by relevance

123

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gstreamer/
H A DGStreamerUtilities.cpp38 bool gstInitialized = gst_init_check(0, 0, &error.outPtr());
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DCopiedAllocator.h40 CheckedBoolean tryAllocate(size_t bytes, void** outPtr);
74 inline CheckedBoolean CopiedAllocator::tryAllocate(size_t bytes, void** outPtr) argument
89 *outPtr = m_currentPayloadEnd - currentRemaining - bytes;
91 ASSERT(is8ByteAligned(*outPtr));
H A DCopiedSpaceInlines.h151 inline CheckedBoolean CopiedSpace::tryAllocate(size_t bytes, void** outPtr) argument
155 if (!m_allocator.tryAllocate(bytes, outPtr))
156 return tryAllocateSlowCase(bytes, outPtr);
158 ASSERT(*outPtr);
H A DCopiedSpace.cpp67 CheckedBoolean CopiedSpace::tryAllocateSlowCase(size_t bytes, void** outPtr) argument
70 return tryAllocateOversize(bytes, outPtr);
77 *outPtr = m_allocator.forceAllocate(bytes);
81 CheckedBoolean CopiedSpace::tryAllocateOversize(size_t bytes, void** outPtr) argument
92 *outPtr = allocator.forceAllocate(bytes);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/tests/
H A DTestInspectorServer.cpp166 WebKitJavascriptResult* javascriptResult = test->runJavaScriptAndWaitUntilFinished("pages.length;", &error.outPtr());
171 javascriptResult = test->runJavaScriptAndWaitUntilFinished("pages[0].id;", &error.outPtr());
177 javascriptResult = test->runJavaScriptAndWaitUntilFinished("pages[0].url;", &error.outPtr());
183 javascriptResult = test->runJavaScriptAndWaitUntilFinished("pages[0].inspectorUrl;", &error.outPtr());
232 WebKitJavascriptResult* javascriptResult = test->runJavaScriptAndWaitUntilFinished("pages[0].inspectorUrl;", &error.outPtr());
H A DWebKitTestBus.cpp42 if (!g_spawn_command_line_sync(dbusLaunch.get(), &output.outPtr(), 0, 0, &error.outPtr())) {
H A DTestWebKitWebView.cpp617 WebKitJavascriptResult* javascriptResult = test->runJavaScriptAndWaitUntilFinished("window.document.getElementById('WebKitLink').title;", &error.outPtr());
623 javascriptResult = test->runJavaScriptAndWaitUntilFinished("window.document.getElementById('WebKitLink').href;", &error.outPtr());
629 javascriptResult = test->runJavaScriptAndWaitUntilFinished("window.document.getElementById('WebKitLink').textContent", &error.outPtr());
635 javascriptResult = test->runJavaScriptAndWaitUntilFinished("a = 25;", &error.outPtr());
640 javascriptResult = test->runJavaScriptAndWaitUntilFinished("a = 2.5;", &error.outPtr());
645 javascriptResult = test->runJavaScriptAndWaitUntilFinished("a = true", &error.outPtr());
650 javascriptResult = test->runJavaScriptAndWaitUntilFinished("a = false", &error.outPtr());
655 javascriptResult = test->runJavaScriptAndWaitUntilFinished("a = null", &error.outPtr());
660 javascriptResult = test->runJavaScriptAndWaitUntilFinished("function Foo() { a = 25; } Foo();", &error.outPtr());
665 javascriptResult = test->runJavaScriptFromGResourceAndWaitUntilFinished("/org/webkit/webkit2gtk/tests/link-title.js", &error.outPtr());
[all...]
H A DWebExtensionTest.cpp141 &error.outPtr());
H A DWebViewTest.cpp222 unsigned char* data = webkit_web_resource_get_data_finish(WEBKIT_WEB_RESOURCE(object), result, &dataSize, &error.outPtr());
293 if (gdk_keymap_get_entries_for_keyval(gdk_keymap_get_default(), keyVal, &keys.outPtr(), &keysCount))
429 test->m_surface = webkit_web_view_get_snapshot_finish(web_view, res, &error.outPtr());
H A DTestWebViewEditor.cpp42 test->m_canExecuteEditingCommand = webkit_web_view_can_execute_editing_command_finish(test->m_webView, result, &error.outPtr());
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dsendf.c62 char *inPtr, *outPtr; local
84 inPtr = outPtr = memchr(startPtr, '\r', size);
92 *outPtr = *inPtr;
99 *outPtr = '\n';
103 *outPtr = *inPtr;
106 outPtr++;
114 *outPtr = '\n'; /* copy a NL instead */
120 *outPtr = *inPtr;
122 outPtr++;
124 if(outPtr < startPt
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/gstreamer/
H A DAudioDestinationGStreamer.cpp171 gst_message_parse_warning(message, &error.outPtr(), &debug.outPtr());
175 gst_message_parse_error(message, &error.outPtr(), &debug.outPtr());
H A DAudioFileReaderGStreamer.cpp319 gst_message_parse_warning(message, &error.outPtr(), &debug.outPtr());
323 gst_message_parse_error(message, &error.outPtr(), &debug.outPtr());
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gtk/
H A DImageBufferGtk.cpp61 gdk_pixbuf_save_to_buffer(pixbuf.get(), &buffer.outPtr(), &bufferSize, type.utf8().data(), &error, "quality", qualityString.utf8().data(), NULL);
63 gdk_pixbuf_save_to_buffer(pixbuf.get(), &buffer.outPtr(), &bufferSize, type.utf8().data(), &error, NULL);
H A DImageGtk.cpp70 if (!g_file_get_contents(name.data(), &content.outPtr(), &length, 0))
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DSocketStreamHandleSoup.cpp173 gssize written = g_pollable_output_stream_write_nonblocking(m_outputStream.get(), data, length, 0, &error.outPtr());
199 g_io_stream_close(G_IO_STREAM(m_socketConnection.get()), 0, &error.outPtr());
256 GSocketConnection* socketConnection = g_socket_client_connect_to_host_finish(client, result, &error.outPtr());
273 gssize bytesRead = g_input_stream_read_finish(stream, result, &error.outPtr());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Launcher/gtk/
H A DProcessLauncherGtk.cpp96 if (!g_spawn_async(0, argv, 0, G_SPAWN_LEAVE_DESCRIPTORS_OPEN, childSetupFunction, GINT_TO_POINTER(sockets[1]), &pid, &error.outPtr())) {
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkCanvas.h299 XPoint *outPtr);
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkCanvas.h304 XPoint *outPtr));
/macosx-10.9.5/security_ocspd-55118.2/server/
H A DocspdServer.cpp254 char *outPtr = &fileName[0]; local
256 strlcpy(outPtr, pathPrefix, outLen);
257 outPtr += prefixLen;
261 snprintf(outPtr, outLen, "%02X", *dataPtr++);
262 outPtr+=2;
264 *outPtr='\0';
286 char *outPtr = &outStr[0]; local
289 snprintf(outPtr, outLen, "%02X", *dataPtr++);
290 outPtr+=2;
292 *outPtr
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/soup/
H A DDownloadSoup.cpp100 m_outputStream = adoptGRef(g_file_replace(file.get(), 0, TRUE, G_FILE_CREATE_NONE, 0, &error.outPtr()));
122 g_output_stream_write_all(G_OUTPUT_STREAM(m_outputStream.get()), data, length, &bytesWritten, 0, &error.outPtr());
/macosx-10.9.5/CommonCrypto-60049/libcn/
H A DCommonBaseXX.c546 uint8_t *outPtr = out; local
559 retval = CNEncoderUpdate(encoder, in, inLen, outPtr, &currentlyAvailable);
564 outPtr += currentlyAvailable;
567 retval = CNEncoderFinal(encoder, outPtr, &currentlyAvailable);
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DDataObjectGtk.cpp100 GOwnPtr<gchar> filename(g_filename_from_uri(line.utf8().data(), 0, &error.outPtr()));
/macosx-10.9.5/WebCore-7537.78.1/platform/network/gtk/
H A DCredentialBackingStore.cpp80 GOwnPtr<GList> elements(secret_service_search_finish(service, asyncResult, &error.outPtr()));
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitdownload.cpp467 priv->outputStream = g_file_append_to(file.get(), G_FILE_CREATE_NONE, NULL, &error.outPtr());
469 priv->outputStream = g_file_replace(file.get(), NULL, TRUE, G_FILE_CREATE_NONE, NULL, &error.outPtr());
705 g_file_move(src.get(), dest.get(), G_FILE_COPY_BACKUP, 0, 0, 0, &error.outPtr());
866 data, length, &bytes_written, NULL, &error.outPtr());

Completed in 202 milliseconds

123