Home | History | Annotate | Download | only in renderscript

Lines Matching refs:script

160     native void rsnContextBindRootScript(int con, int script);
161 synchronized void nContextBindRootScript(int script) {
163 rsnContextBindRootScript(mContext, script);
489 native void rsnScriptBindAllocation(int con, int script, int alloc, int slot);
490 synchronized void nScriptBindAllocation(int script, int alloc, int slot) {
492 rsnScriptBindAllocation(mContext, script, alloc, slot);
494 native void rsnScriptSetTimeZone(int con, int script, byte[] timeZone);
495 synchronized void nScriptSetTimeZone(int script, byte[] timeZone) {
497 rsnScriptSetTimeZone(mContext, script, timeZone);
558 byte[] script, int length);
559 synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
561 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
748 * coming from their scripts. When a script calls sendToClient the data
751 * in the script.
883 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");