Lines Matching refs:port

30  * TODO: More documentation on filter life-cycle, port and type checking, GL and RenderScript, ...
198 * Returns the input port with the given name.
202 * @return the input port with the specified name, or null if no connected input port
210 * Returns the output port with the given name.
214 * @return the output port with the specified name, or null if no connected output port
222 * Called when an input port has been attached in the graph.
228 * @param port The InputPort instance that was attached.
230 protected void onInputPortAttached(InputPort port) {
234 * Called when an output port has been attached in the graph.
240 * @param port The OutputPort instance that was attached.
242 protected void onOutputPortAttached(OutputPort port) {
246 * Called when an input port is opened on this filter.
248 * input port. Override this if you need to make modifications to the port before processing
252 * @param port The InputPort instance that was opened.
254 protected void onInputPortOpen(InputPort port) {
258 * Called when an output port is opened on this filter.
260 * need to make modifications to the port before processing begins. Note, that this is only
264 * @param port The OutputPort instance that was opened.
266 protected void onOutputPortOpen(OutputPort port) {
307 * output ports, but may differ depending on the port configuration.
335 * This is used by {@link #canSchedule()} to determine if the input-port conditions given by
362 * This is used by {@link #canSchedule()} to determine if the output-port conditions given by
552 * Connect an output port to an input port of another filter.
553 * Connects the output port with the specified name to the input port with the specified name
560 throw new RuntimeException("Attempting to connect already connected output port '"
563 throw new RuntimeException("Attempting to connect already connected input port '"
693 throw new RuntimeException("Could not open output port " + outPort + "!", e);
709 InputPort port = mConnectedInputPortArray[i];
710 if (port.hasFrame() && port.isAutoPullEnabled()) {
760 // Copy our port-maps to arrays for faster non-iterator access