Searched refs:binary (Results 1 - 12 of 12) sorted by relevance

/development/ndk/platforms/android-9/arch-mips/src/
H A D__dso_handle.S5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
30 # C++ constructors and destructors in the binary.
/development/ndk/platforms/android-9/arch-x86/src/
H A D__dso_handle.S5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
30 # C++ constructors and destructors in the binary.
H A D__dso_handle_so.S5 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above copyright
30 # C++ constructors and destructors in the binary.
H A Dcrtbegin_dynamic.S5 # Redistribution and use in source and binary forms, with or without
9 # * Redistributions in binary form must reproduce the above copyright
H A Dcrtbegin_static.S5 # Redistribution and use in source and binary forms, with or without
9 # * Redistributions in binary form must reproduce the above copyright
/development/testrunner/test_defs/
H A Dnative_test.py128 is no binary corresponding to the source file. We need to filter
139 binary = os.path.basename(f)
140 binary = os.path.splitext(binary)[0]
141 full_path = os.path.join(path, binary)
143 binaries.append(binary)
146 def _RunHostCommand(self, binary, valgrind=False):
149 Runs the host binary and returns the exit code.
156 binary: basename of the file to be run. It is expected to be under
163 full_path = os.path.join(android_build.GetHostBin(), binary)
[all...]
/development/ide/emacs/
H A Dandroid-common.el135 (defun android-find-host-bin (binary)
142 (android-host) "/bin/" binary)))
145 (error (concat binary " is missing."))))
146 (executable-find binary)))
/development/testrunner/
H A Drun_command.py150 def RunHostCommand(binary, valgrind=False):
153 Runs the host binary and returns the exit code.
160 binary: full path of the file to be run.
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
176 "--leak-check=yes", "-q", binary],
/development/ndk/platforms/android-5/include/GLES2/
H A Dgl2ext.h438 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
439 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
441 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);
442 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
H A Dgl2.h571 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length);
/development/tools/emulator/opengl/system/GLESv2_enc/
H A Dgl2_entry.cpp106 void glShaderBinary(GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length);
153 void glGetProgramBinaryOES(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary);
154 void glProgramBinaryOES(GLuint program, GLenum binaryFormat, const GLvoid* binary, GLint length);
816 void glShaderBinary(GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length) argument
819 ctx->glShaderBinary(ctx, n, shaders, binaryformat, binary, length);
1098 void glGetProgramBinaryOES(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary) argument
1101 ctx->glGetProgramBinaryOES(ctx, program, bufSize, length, binaryFormat, binary);
1104 void glProgramBinaryOES(GLuint program, GLenum binaryFormat, const GLvoid* binary, GLint length) argument
1107 ctx->glProgramBinaryOES(ctx, program, binaryFormat, binary, length);
H A Dgl2_enc.h122 void glShaderBinary_enc(void *self , GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length);
169 void glGetProgramBinaryOES_enc(void *self , GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary);
170 void glProgramBinaryOES_enc(void *self , GLuint program, GLenum binaryFormat, const GLvoid* binary, GLint length);

Completed in 1311 milliseconds