Home | History | Annotate | Download | only in Plugins

Lines Matching refs:bytes

314         // and all original bytes verbatim, rather than sent through Unicode translation.
325 // This is not the intended behavior; we're supposed to pass original bytes verbatim.
326 // But we don't have the original bytes, we have NSStrings built by the URL loading system.
516 LOG(Plugins, "NPP_WriteReady responseURL=%@ bytes=%d", m_responseURL.get(), deliveryBytes);
530 deliveryBytes = m_pluginFuncs->write(m_plugin, &m_stream, m_offset, [subdata length], (void *)[subdata bytes]);
539 LOG(Plugins, "NPP_Write responseURL=%@ bytes=%d total-delivered=%d/%d", m_responseURL.get(), deliveryBytes, m_offset, m_stream.end);
546 [newDeliveryData appendBytes:(char *)[m_deliveryData.get() bytes] + totalBytesDelivered length:totalBytes - totalBytesDelivered];
584 int byteCount = write(m_fileDescriptor, [data bytes], dataLength);
613 void WebNetscapePluginStream::didReceiveData(NetscapePlugInStreamLoader*, const char* bytes, int length)
615 NSData *data = [[NSData alloc] initWithBytesNoCopy:(void*)bytes length:length freeWhenDone:NO];