OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sourceChannel
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/audio/
AudioChannel.cpp
50
void AudioChannel::copyFrom(const AudioChannel*
sourceChannel
)
52
bool isSafe = (
sourceChannel
&&
sourceChannel
->length() >= length());
57
memcpy(data(),
sourceChannel
->data(), sizeof(float) * length());
60
void AudioChannel::copyFromRange(const AudioChannel*
sourceChannel
, unsigned startFrame, unsigned endFrame)
62
// Check that range is safe for reading from
sourceChannel
.
63
bool isRangeSafe =
sourceChannel
&& startFrame < endFrame && endFrame <=
sourceChannel
->length();
75
const float* source =
sourceChannel
->data();
80
void AudioChannel::sumFrom(const AudioChannel*
sourceChannel
)
[
all
...]
AudioChannel.h
92
void copyFrom(const AudioChannel*
sourceChannel
);
95
void copyFromRange(const AudioChannel*
sourceChannel
, unsigned startFrame, unsigned endFrame);
98
void sumFrom(const AudioChannel*
sourceChannel
);
ReverbConvolver.cpp
178
void ReverbConvolver::process(AudioChannel*
sourceChannel
, AudioChannel* destinationChannel, size_t framesToProcess)
180
bool isSafe =
sourceChannel
&& destinationChannel &&
sourceChannel
->length() >= framesToProcess && destinationChannel->length() >= framesToProcess;
185
float* source =
sourceChannel
->data();
ReverbConvolver.h
55
void process(AudioChannel*
sourceChannel
, AudioChannel* destinationChannel, size_t framesToProcess);
AudioBus.cpp
206
const AudioChannel*
sourceChannel
= sourceBus.channel(0);
207
channel(0)->copyFrom(
sourceChannel
);
208
channel(1)->copyFrom(
sourceChannel
);
223
const AudioChannel*
sourceChannel
= sourceBus.channel(0);
224
channel(0)->sumFrom(
sourceChannel
);
225
channel(1)->sumFrom(
sourceChannel
);
/libcore/luni/src/test/java/libcore/java/nio/channels/
ChannelsTest.java
30
Pipe.
SourceChannel
sourceChannel
= createNonBlockingChannel("abc".getBytes("UTF-8"));
32
Channels.newInputStream(
sourceChannel
).read();
43
Pipe.
SourceChannel
sourceChannel
= createNonBlockingChannel("abc".getBytes("UTF-8"));
45
Channels.newReader(
sourceChannel
, "UTF-8").read();
51
private Pipe.
SourceChannel
createNonBlockingChannel(byte[] content) throws IOException {
55
Pipe.
SourceChannel
sourceChannel
= pipe.source();
56
sourceChannel
.configureBlocking(false)
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java
497
* @param
sourceChannel
Channel that received this message.
500
MessageChannel
sourceChannel
, SIPDialog dialog) {
535
inviteClientTransaction(transactionResponse,
sourceChannel
, dialog);
537
nonInviteClientTransaction(transactionResponse,
sourceChannel
, dialog);
604
* @param
sourceChannel
- source channel on which the response was received.
607
MessageChannel
sourceChannel
, SIPDialog sipDialog) throws IOException {
[
all
...]
SIPServerTransaction.java
706
* @param
sourceChannel
Channel that received this message.
708
public void processRequest(SIPRequest transactionRequest, MessageChannel
sourceChannel
) {
[
all
...]
Completed in 160 milliseconds