/system/netd/ |
NetdCommand.cpp | 19 NetdCommand::NetdCommand(const char *cmd) : 20 FrameworkCommand(cmd) {
|
/system/vold/ |
VoldCommand.cpp | 19 VoldCommand::VoldCommand(const char *cmd) : 20 FrameworkCommand(cmd) {
|
/external/linux-tools-perf/util/ |
generate-cmdlist.sh | 16 while read cmd 19 /^NAME/,/perf-'"$cmd"'/H 22 s/.*perf-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/ 24 }' "${PREFIX}/Documentation/perf-$cmd.txt"
|
run-command.c | 18 int start_command(struct child_process *cmd) 28 need_in = !cmd->no_stdin && cmd->in < 0; 31 if (cmd->out > 0) 32 close(cmd->out); 35 cmd->in = fdin[1]; 38 need_out = !cmd->no_stdout 39 && !cmd->stdout_to_stderr 40 && cmd->out < 0; 45 else if (cmd->in 211 struct child_process cmd; local [all...] |
/external/kernel-headers/original/linux/ |
fcntl.h | 41 #define IS_GETLK32(cmd) ((cmd) == F_GETLK) 42 #define IS_SETLK32(cmd) ((cmd) == F_SETLK) 43 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW) 44 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64) 45 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64 [all...] |
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
cld_macros.h | 11 #define RETURN_IF_ERROR(cmd) \ 13 DWORD result_ = (cmd); \
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_cmd.py | 1 """Tests for distutils.cmd.""" 6 from distutils.cmd import Command 19 self.cmd = MyCmd(dist) 23 cmd = self.cmd 24 cmd.not_string_list = ['one', 2, 'three'] 25 cmd.yes_string_list = ['one', 'two', 'three'] 26 cmd.not_string_list2 = object() 27 cmd.yes_string_list2 = 'ok' 28 cmd.ensure_string_list('yes_string_list' [all...] |
test_build_clib.py | 19 cmd = build_clib(dist) 22 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 'foo') 25 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 30 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 34 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 39 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 45 cmd.check_library_list(libs) 49 cmd = build_clib(dist) 53 cmd.libraries = [('name', {})] 54 self.assertRaises(DistutilsSetupError, cmd.get_source_files [all...] |
test_install_lib.py | 19 cmd = install_lib(dist) 21 cmd.finalize_options() 22 self.assertEqual(cmd.compile, 1) 23 self.assertEqual(cmd.optimize, 0) 26 cmd.optimize = 'foo' 27 self.assertRaises(DistutilsOptionError, cmd.finalize_options) 28 cmd.optimize = '4' 29 self.assertRaises(DistutilsOptionError, cmd.finalize_options) 31 cmd.optimize = '2' 32 cmd.finalize_options( [all...] |
test_check.py | 18 cmd = check(dist) 19 cmd.initialize_options() 21 setattr(cmd, name, value) 22 cmd.ensure_finalized() 23 cmd.run() 24 return cmd 30 cmd = self._run() 31 self.assertEqual(cmd._warnings, 2) 39 cmd = self._run(metadata) 40 self.assertEqual(cmd._warnings, 0 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_cmd.py | 1 """Tests for distutils.cmd.""" 6 from distutils.cmd import Command 19 self.cmd = MyCmd(dist) 23 cmd = self.cmd 24 cmd.not_string_list = ['one', 2, 'three'] 25 cmd.yes_string_list = ['one', 'two', 'three'] 26 cmd.not_string_list2 = object() 27 cmd.yes_string_list2 = 'ok' 28 cmd.ensure_string_list('yes_string_list' [all...] |
test_build_clib.py | 19 cmd = build_clib(dist) 22 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 'foo') 25 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 30 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 34 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 39 self.assertRaises(DistutilsSetupError, cmd.check_library_list, 45 cmd.check_library_list(libs) 49 cmd = build_clib(dist) 53 cmd.libraries = [('name', {})] 54 self.assertRaises(DistutilsSetupError, cmd.get_source_files [all...] |
test_install_lib.py | 19 cmd = install_lib(dist) 21 cmd.finalize_options() 22 self.assertEqual(cmd.compile, 1) 23 self.assertEqual(cmd.optimize, 0) 26 cmd.optimize = 'foo' 27 self.assertRaises(DistutilsOptionError, cmd.finalize_options) 28 cmd.optimize = '4' 29 self.assertRaises(DistutilsOptionError, cmd.finalize_options) 31 cmd.optimize = '2' 32 cmd.finalize_options( [all...] |
test_check.py | 18 cmd = check(dist) 19 cmd.initialize_options() 21 setattr(cmd, name, value) 22 cmd.ensure_finalized() 23 cmd.run() 24 return cmd 30 cmd = self._run() 31 self.assertEqual(cmd._warnings, 2) 39 cmd = self._run(metadata) 40 self.assertEqual(cmd._warnings, 0 [all...] |
/external/valgrind/main/coregrind/ |
link_tool_exe_darwin.in | 141 my $cmd = "/usr/bin/ld"; 143 $cmd = "$cmd -static"; 149 $cmd = "$cmd -new_linker"; 152 $cmd = "$cmd -arch $archstr"; 153 $cmd = "$cmd -macosx_version_min 10.5"; 154 $cmd = "$cmd -o $outname" [all...] |
/external/chromium_org/gpu/command_buffer/common/ |
gles2_cmd_format_test_autogen.h | 16 cmds::ActiveTexture& cmd = *GetBufferAs<cmds::ActiveTexture>(); local 17 void* next_cmd = cmd.Set( 18 &cmd, 21 cmd.header.command); 22 EXPECT_EQ(sizeof(cmd), cmd.header.size * 4u); 23 EXPECT_EQ(static_cast<GLenum>(11), cmd.texture); 25 next_cmd, sizeof(cmd)); 29 cmds::AttachShader& cmd = *GetBufferAs<cmds::AttachShader>(); local 30 void* next_cmd = cmd.Set 44 cmds::BindAttribLocation& cmd = *GetBufferAs<cmds::BindAttribLocation>(); local 65 cmds::BindAttribLocationBucket& cmd = local 83 cmds::BindBuffer& cmd = *GetBufferAs<cmds::BindBuffer>(); local 98 cmds::BindFramebuffer& cmd = *GetBufferAs<cmds::BindFramebuffer>(); local 113 cmds::BindRenderbuffer& cmd = *GetBufferAs<cmds::BindRenderbuffer>(); local 128 cmds::BindTexture& cmd = *GetBufferAs<cmds::BindTexture>(); local 143 cmds::BlendColor& cmd = *GetBufferAs<cmds::BlendColor>(); local 162 cmds::BlendEquation& cmd = *GetBufferAs<cmds::BlendEquation>(); local 175 cmds::BlendEquationSeparate& cmd = local 191 cmds::BlendFunc& cmd = *GetBufferAs<cmds::BlendFunc>(); local 206 cmds::BlendFuncSeparate& cmd = *GetBufferAs<cmds::BlendFuncSeparate>(); local 225 cmds::BufferData& cmd = *GetBufferAs<cmds::BufferData>(); local 246 cmds::BufferSubData& cmd = *GetBufferAs<cmds::BufferSubData>(); local 267 cmds::CheckFramebufferStatus& cmd = local 285 cmds::Clear& cmd = *GetBufferAs<cmds::Clear>(); local 298 cmds::ClearColor& cmd = *GetBufferAs<cmds::ClearColor>(); local 317 cmds::ClearDepthf& cmd = *GetBufferAs<cmds::ClearDepthf>(); local 330 cmds::ClearStencil& cmd = *GetBufferAs<cmds::ClearStencil>(); local 343 cmds::ColorMask& cmd = *GetBufferAs<cmds::ColorMask>(); local 362 cmds::CompileShader& cmd = *GetBufferAs<cmds::CompileShader>(); local 375 cmds::CompressedTexImage2D& cmd = *GetBufferAs<cmds::CompressedTexImage2D>(); local 404 cmds::CompressedTexImage2DBucket& cmd = local 430 cmds::CompressedTexSubImage2D& cmd = local 462 cmds::CompressedTexSubImage2DBucket& cmd = local 490 cmds::CopyTexImage2D& cmd = *GetBufferAs<cmds::CopyTexImage2D>(); local 517 cmds::CopyTexSubImage2D& cmd = *GetBufferAs<cmds::CopyTexSubImage2D>(); local 544 cmds::CreateProgram& cmd = *GetBufferAs<cmds::CreateProgram>(); local 557 cmds::CreateShader& cmd = *GetBufferAs<cmds::CreateShader>(); local 572 cmds::CullFace& cmd = *GetBufferAs<cmds::CullFace>(); local 585 cmds::DeleteBuffers& cmd = *GetBufferAs<cmds::DeleteBuffers>(); local 603 cmds::DeleteBuffersImmediate& cmd = local 620 cmds::DeleteFramebuffers& cmd = *GetBufferAs<cmds::DeleteFramebuffers>(); local 638 cmds::DeleteFramebuffersImmediate& cmd = local 655 cmds::DeleteProgram& cmd = *GetBufferAs<cmds::DeleteProgram>(); local 668 cmds::DeleteRenderbuffers& cmd = *GetBufferAs<cmds::DeleteRenderbuffers>(); local 686 cmds::DeleteRenderbuffersImmediate& cmd = local 703 cmds::DeleteShader& cmd = *GetBufferAs<cmds::DeleteShader>(); local 716 cmds::DeleteTextures& cmd = *GetBufferAs<cmds::DeleteTextures>(); local 734 cmds::DeleteTexturesImmediate& cmd = local 751 cmds::DepthFunc& cmd = *GetBufferAs<cmds::DepthFunc>(); local 764 cmds::DepthMask& cmd = *GetBufferAs<cmds::DepthMask>(); local 777 cmds::DepthRangef& cmd = *GetBufferAs<cmds::DepthRangef>(); local 792 cmds::DetachShader& cmd = *GetBufferAs<cmds::DetachShader>(); local 807 cmds::Disable& cmd = *GetBufferAs<cmds::Disable>(); local 820 cmds::DisableVertexAttribArray& cmd = local 834 cmds::DrawArrays& cmd = *GetBufferAs<cmds::DrawArrays>(); local 851 cmds::DrawElements& cmd = *GetBufferAs<cmds::DrawElements>(); local 870 cmds::Enable& cmd = *GetBufferAs<cmds::Enable>(); local 883 cmds::EnableVertexAttribArray& cmd = local 897 cmds::Finish& cmd = *GetBufferAs<cmds::Finish>(); local 908 cmds::Flush& cmd = *GetBufferAs<cmds::Flush>(); local 919 cmds::FramebufferRenderbuffer& cmd = local 939 cmds::FramebufferTexture2D& cmd = *GetBufferAs<cmds::FramebufferTexture2D>(); local 960 cmds::FrontFace& cmd = *GetBufferAs<cmds::FrontFace>(); local 973 cmds::GenBuffers& cmd = *GetBufferAs<cmds::GenBuffers>(); local 991 cmds::GenBuffersImmediate& cmd = *GetBufferAs<cmds::GenBuffersImmediate>(); local 1007 cmds::GenerateMipmap& cmd = *GetBufferAs<cmds::GenerateMipmap>(); local 1020 cmds::GenFramebuffers& cmd = *GetBufferAs<cmds::GenFramebuffers>(); local 1038 cmds::GenFramebuffersImmediate& cmd = local 1055 cmds::GenRenderbuffers& cmd = *GetBufferAs<cmds::GenRenderbuffers>(); local 1073 cmds::GenRenderbuffersImmediate& cmd = local 1090 cmds::GenTextures& cmd = *GetBufferAs<cmds::GenTextures>(); local 1108 cmds::GenTexturesImmediate& cmd = *GetBufferAs<cmds::GenTexturesImmediate>(); local 1124 cmds::GetActiveAttrib& cmd = *GetBufferAs<cmds::GetActiveAttrib>(); local 1145 cmds::GetActiveUniform& cmd = *GetBufferAs<cmds::GetActiveUniform>(); local 1166 cmds::GetAttachedShaders& cmd = *GetBufferAs<cmds::GetAttachedShaders>(); local 1187 cmds::GetBooleanv& cmd = *GetBufferAs<cmds::GetBooleanv>(); local 1204 cmds::GetBufferParameteriv& cmd = *GetBufferAs<cmds::GetBufferParameteriv>(); local 1223 cmds::GetError& cmd = *GetBufferAs<cmds::GetError>(); local 1238 cmds::GetFloatv& cmd = *GetBufferAs<cmds::GetFloatv>(); local 1255 cmds::GetFramebufferAttachmentParameteriv& cmd = local 1278 cmds::GetIntegerv& cmd = *GetBufferAs<cmds::GetIntegerv>(); local 1295 cmds::GetProgramiv& cmd = *GetBufferAs<cmds::GetProgramiv>(); local 1314 cmds::GetProgramInfoLog& cmd = *GetBufferAs<cmds::GetProgramInfoLog>(); local 1329 cmds::GetRenderbufferParameteriv& cmd = local 1349 cmds::GetShaderiv& cmd = *GetBufferAs<cmds::GetShaderiv>(); local 1368 cmds::GetShaderInfoLog& cmd = *GetBufferAs<cmds::GetShaderInfoLog>(); local 1383 cmds::GetShaderPrecisionFormat& cmd = local 1403 cmds::GetShaderSource& cmd = *GetBufferAs<cmds::GetShaderSource>(); local 1418 cmds::GetString& cmd = *GetBufferAs<cmds::GetString>(); local 1433 cmds::GetTexParameterfv& cmd = *GetBufferAs<cmds::GetTexParameterfv>(); local 1452 cmds::GetTexParameteriv& cmd = *GetBufferAs<cmds::GetTexParameteriv>(); local 1471 cmds::GetUniformfv& cmd = *GetBufferAs<cmds::GetUniformfv>(); local 1490 cmds::GetUniformiv& cmd = *GetBufferAs<cmds::GetUniformiv>(); local 1511 cmds::GetVertexAttribfv& cmd = *GetBufferAs<cmds::GetVertexAttribfv>(); local 1530 cmds::GetVertexAttribiv& cmd = *GetBufferAs<cmds::GetVertexAttribiv>(); local 1549 cmds::GetVertexAttribPointerv& cmd = local 1569 cmds::Hint& cmd = *GetBufferAs<cmds::Hint>(); local 1584 cmds::IsBuffer& cmd = *GetBufferAs<cmds::IsBuffer>(); local 1601 cmds::IsEnabled& cmd = *GetBufferAs<cmds::IsEnabled>(); local 1618 cmds::IsFramebuffer& cmd = *GetBufferAs<cmds::IsFramebuffer>(); local 1635 cmds::IsProgram& cmd = *GetBufferAs<cmds::IsProgram>(); local 1652 cmds::IsRenderbuffer& cmd = *GetBufferAs<cmds::IsRenderbuffer>(); local 1669 cmds::IsShader& cmd = *GetBufferAs<cmds::IsShader>(); local 1686 cmds::IsTexture& cmd = *GetBufferAs<cmds::IsTexture>(); local 1703 cmds::LineWidth& cmd = *GetBufferAs<cmds::LineWidth>(); local 1716 cmds::LinkProgram& cmd = *GetBufferAs<cmds::LinkProgram>(); local 1729 cmds::PixelStorei& cmd = *GetBufferAs<cmds::PixelStorei>(); local 1744 cmds::PolygonOffset& cmd = *GetBufferAs<cmds::PolygonOffset>(); local 1759 cmds::ReadPixels& cmd = *GetBufferAs<cmds::ReadPixels>(); local 1792 cmds::ReleaseShaderCompiler& cmd = local 1804 cmds::RenderbufferStorage& cmd = *GetBufferAs<cmds::RenderbufferStorage>(); local 1823 cmds::SampleCoverage& cmd = *GetBufferAs<cmds::SampleCoverage>(); local 1838 cmds::Scissor& cmd = *GetBufferAs<cmds::Scissor>(); local 1857 cmds::ShaderBinary& cmd = *GetBufferAs<cmds::ShaderBinary>(); local 1882 cmds::ShaderSource& cmd = *GetBufferAs<cmds::ShaderSource>(); local 1901 cmds::ShaderSourceBucket& cmd = *GetBufferAs<cmds::ShaderSourceBucket>(); local 1916 cmds::StencilFunc& cmd = *GetBufferAs<cmds::StencilFunc>(); local 1933 cmds::StencilFuncSeparate& cmd = *GetBufferAs<cmds::StencilFuncSeparate>(); local 1952 cmds::StencilMask& cmd = *GetBufferAs<cmds::StencilMask>(); local 1965 cmds::StencilMaskSeparate& cmd = *GetBufferAs<cmds::StencilMaskSeparate>(); local 1980 cmds::StencilOp& cmd = *GetBufferAs<cmds::StencilOp>(); local 1997 cmds::StencilOpSeparate& cmd = *GetBufferAs<cmds::StencilOpSeparate>(); local 2016 cmds::TexImage2D& cmd = *GetBufferAs<cmds::TexImage2D>(); local 2047 cmds::TexParameterf& cmd = *GetBufferAs<cmds::TexParameterf>(); local 2064 cmds::TexParameterfv& cmd = *GetBufferAs<cmds::TexParameterfv>(); local 2087 cmds::TexParameterfvImmediate& cmd = local 2108 cmds::TexParameteri& cmd = *GetBufferAs<cmds::TexParameteri>(); local 2125 cmds::TexParameteriv& cmd = *GetBufferAs<cmds::TexParameteriv>(); local 2148 cmds::TexParameterivImmediate& cmd = local 2169 cmds::TexSubImage2D& cmd = *GetBufferAs<cmds::TexSubImage2D>(); local 2202 cmds::Uniform1f& cmd = *GetBufferAs<cmds::Uniform1f>(); local 2217 cmds::Uniform1fv& cmd = *GetBufferAs<cmds::Uniform1fv>(); local 2241 cmds::Uniform1fvImmediate& cmd = *GetBufferAs<cmds::Uniform1fvImmediate>(); local 2262 cmds::Uniform1i& cmd = *GetBufferAs<cmds::Uniform1i>(); local 2277 cmds::Uniform1iv& cmd = *GetBufferAs<cmds::Uniform1iv>(); local 2301 cmds::Uniform1ivImmediate& cmd = *GetBufferAs<cmds::Uniform1ivImmediate>(); local 2322 cmds::Uniform2f& cmd = *GetBufferAs<cmds::Uniform2f>(); local 2339 cmds::Uniform2fv& cmd = *GetBufferAs<cmds::Uniform2fv>(); local 2365 cmds::Uniform2fvImmediate& cmd = *GetBufferAs<cmds::Uniform2fvImmediate>(); local 2386 cmds::Uniform2i& cmd = *GetBufferAs<cmds::Uniform2i>(); local 2403 cmds::Uniform2iv& cmd = *GetBufferAs<cmds::Uniform2iv>(); local 2429 cmds::Uniform2ivImmediate& cmd = *GetBufferAs<cmds::Uniform2ivImmediate>(); local 2450 cmds::Uniform3f& cmd = *GetBufferAs<cmds::Uniform3f>(); local 2469 cmds::Uniform3fv& cmd = *GetBufferAs<cmds::Uniform3fv>(); local 2497 cmds::Uniform3fvImmediate& cmd = *GetBufferAs<cmds::Uniform3fvImmediate>(); local 2518 cmds::Uniform3i& cmd = *GetBufferAs<cmds::Uniform3i>(); local 2537 cmds::Uniform3iv& cmd = *GetBufferAs<cmds::Uniform3iv>(); local 2565 cmds::Uniform3ivImmediate& cmd = *GetBufferAs<cmds::Uniform3ivImmediate>(); local 2586 cmds::Uniform4f& cmd = *GetBufferAs<cmds::Uniform4f>(); local 2607 cmds::Uniform4fv& cmd = *GetBufferAs<cmds::Uniform4fv>(); local 2637 cmds::Uniform4fvImmediate& cmd = *GetBufferAs<cmds::Uniform4fvImmediate>(); local 2658 cmds::Uniform4i& cmd = *GetBufferAs<cmds::Uniform4i>(); local 2679 cmds::Uniform4iv& cmd = *GetBufferAs<cmds::Uniform4iv>(); local 2709 cmds::Uniform4ivImmediate& cmd = *GetBufferAs<cmds::Uniform4ivImmediate>(); local 2730 cmds::UniformMatrix2fv& cmd = *GetBufferAs<cmds::UniformMatrix2fv>(); local 2762 cmds::UniformMatrix2fvImmediate& cmd = local 2786 cmds::UniformMatrix3fv& cmd = *GetBufferAs<cmds::UniformMatrix3fv>(); local 2828 cmds::UniformMatrix3fvImmediate& cmd = local 2852 cmds::UniformMatrix4fv& cmd = *GetBufferAs<cmds::UniformMatrix4fv>(); local 2908 cmds::UniformMatrix4fvImmediate& cmd = local 2932 cmds::UseProgram& cmd = *GetBufferAs<cmds::UseProgram>(); local 2945 cmds::ValidateProgram& cmd = *GetBufferAs<cmds::ValidateProgram>(); local 2958 cmds::VertexAttrib1f& cmd = *GetBufferAs<cmds::VertexAttrib1f>(); local 2973 cmds::VertexAttrib1fv& cmd = *GetBufferAs<cmds::VertexAttrib1fv>(); local 2994 cmds::VertexAttrib1fvImmediate& cmd = local 3013 cmds::VertexAttrib2f& cmd = *GetBufferAs<cmds::VertexAttrib2f>(); local 3030 cmds::VertexAttrib2fv& cmd = *GetBufferAs<cmds::VertexAttrib2fv>(); local 3052 cmds::VertexAttrib2fvImmediate& cmd = local 3071 cmds::VertexAttrib3f& cmd = *GetBufferAs<cmds::VertexAttrib3f>(); local 3090 cmds::VertexAttrib3fv& cmd = *GetBufferAs<cmds::VertexAttrib3fv>(); local 3113 cmds::VertexAttrib3fvImmediate& cmd = local 3132 cmds::VertexAttrib4f& cmd = *GetBufferAs<cmds::VertexAttrib4f>(); local 3153 cmds::VertexAttrib4fv& cmd = *GetBufferAs<cmds::VertexAttrib4fv>(); local 3177 cmds::VertexAttrib4fvImmediate& cmd = local 3196 cmds::VertexAttribPointer& cmd = *GetBufferAs<cmds::VertexAttribPointer>(); local 3219 cmds::Viewport& cmd = *GetBufferAs<cmds::Viewport>(); local 3238 cmds::BlitFramebufferCHROMIUM& cmd = local 3270 cmds::RenderbufferStorageMultisampleCHROMIUM& cmd = local 3294 cmds::RenderbufferStorageMultisampleEXT& cmd = local 3317 cmds::FramebufferTexture2DMultisampleEXT& cmd = local 3342 cmds::TexStorage2DEXT& cmd = *GetBufferAs<cmds::TexStorage2DEXT>(); local 3363 cmds::GenQueriesEXT& cmd = *GetBufferAs<cmds::GenQueriesEXT>(); local 3381 cmds::GenQueriesEXTImmediate& cmd = local 3398 cmds::DeleteQueriesEXT& cmd = *GetBufferAs<cmds::DeleteQueriesEXT>(); local 3416 cmds::DeleteQueriesEXTImmediate& cmd = local 3433 cmds::BeginQueryEXT& cmd = *GetBufferAs<cmds::BeginQueryEXT>(); local 3452 cmds::EndQueryEXT& cmd = *GetBufferAs<cmds::EndQueryEXT>(); local 3467 cmds::InsertEventMarkerEXT& cmd = *GetBufferAs<cmds::InsertEventMarkerEXT>(); local 3480 cmds::PushGroupMarkerEXT& cmd = *GetBufferAs<cmds::PushGroupMarkerEXT>(); local 3493 cmds::PopGroupMarkerEXT& cmd = *GetBufferAs<cmds::PopGroupMarkerEXT>(); local 3504 cmds::GenVertexArraysOES& cmd = *GetBufferAs<cmds::GenVertexArraysOES>(); local 3522 cmds::GenVertexArraysOESImmediate& cmd = local 3539 cmds::DeleteVertexArraysOES& cmd = local 3558 cmds::DeleteVertexArraysOESImmediate& cmd = local 3575 cmds::IsVertexArrayOES& cmd = *GetBufferAs<cmds::IsVertexArrayOES>(); local 3592 cmds::BindVertexArrayOES& cmd = *GetBufferAs<cmds::BindVertexArrayOES>(); local 3605 cmds::SwapBuffers& cmd = *GetBufferAs<cmds::SwapBuffers>(); local 3616 cmds::GetMaxValueInBufferCHROMIUM& cmd = local 3640 cmds::GenSharedIdsCHROMIUM& cmd = *GetBufferAs<cmds::GenSharedIdsCHROMIUM>(); local 3661 cmds::DeleteSharedIdsCHROMIUM& cmd = local 3681 cmds::RegisterSharedIdsCHROMIUM& cmd = local 3701 cmds::EnableFeatureCHROMIUM& cmd = local 3719 cmds::ResizeCHROMIUM& cmd = *GetBufferAs<cmds::ResizeCHROMIUM>(); local 3736 cmds::GetRequestableExtensionsCHROMIUM& cmd = local 3751 cmds::RequestExtensionCHROMIUM& cmd = local 3765 cmds::GetMultipleIntegervCHROMIUM& cmd = local 3789 cmds::GetProgramInfoCHROMIUM& cmd = local 3805 cmds::CreateStreamTextureCHROMIUM& cmd = local 3823 cmds::DestroyStreamTextureCHROMIUM& cmd = local 3837 cmds::GetTranslatedShaderSourceANGLE& cmd = local 3853 cmds::PostSubBufferCHROMIUM& cmd = local 3873 cmds::TexImageIOSurface2DCHROMIUM& cmd = local 3895 cmds::CopyTextureCHROMIUM& cmd = *GetBufferAs<cmds::CopyTextureCHROMIUM>(); local 3918 cmds::DrawArraysInstancedANGLE& cmd = local 3938 cmds::DrawElementsInstancedANGLE& cmd = local 3960 cmds::VertexAttribDivisorANGLE& cmd = local 3977 cmds::ProduceTextureCHROMIUM& cmd = local 4062 cmds::ProduceTextureCHROMIUMImmediate& cmd = local 4081 cmds::ConsumeTextureCHROMIUM& cmd = local 4166 cmds::ConsumeTextureCHROMIUMImmediate& cmd = local 4185 cmds::BindUniformLocationCHROMIUM& cmd = local 4207 cmds::BindUniformLocationCHROMIUMBucket& cmd = local 4226 cmds::BindTexImage2DCHROMIUM& cmd = local 4242 cmds::ReleaseTexImage2DCHROMIUM& cmd = local 4258 cmds::TraceBeginCHROMIUM& cmd = *GetBufferAs<cmds::TraceBeginCHROMIUM>(); local 4271 cmds::TraceEndCHROMIUM& cmd = *GetBufferAs<cmds::TraceEndCHROMIUM>(); local 4282 cmds::AsyncTexSubImage2DCHROMIUM& cmd = local 4314 cmds::AsyncTexImage2DCHROMIUM& cmd = local 4346 cmds::WaitAsyncTexImage2DCHROMIUM& cmd = local 4360 cmds::DiscardFramebufferEXT& cmd = local 4385 cmds::DiscardFramebufferEXTImmediate& cmd = local 4407 cmds::LoseContextCHROMIUM& cmd = *GetBufferAs<cmds::LoseContextCHROMIUM>(); local 4423 cmds::WaitSyncPointCHROMIUM& cmd = local 4437 cmds::DrawBuffersEXT& cmd = *GetBufferAs<cmds::DrawBuffersEXT>(); local 4458 cmds::DrawBuffersEXTImmediate& cmd = local 4478 cmds::DiscardBackbufferCHROMIUM& cmd = local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_cmd.c | 106 uint32 cmd, // IN 116 header->id = cmd; 161 SVGA3dCmdDefineContext *cmd; local 163 cmd = SVGA3D_FIFOReserve(swc, 164 SVGA_3D_CMD_CONTEXT_DEFINE, sizeof *cmd, 0); 165 if(!cmd) 168 cmd->cid = swc->cid; 195 SVGA3dCmdDestroyContext *cmd; local 197 cmd = SVGA3D_FIFOReserve(swc, 198 SVGA_3D_CMD_CONTEXT_DESTROY, sizeof *cmd, 0) 275 SVGA3dCmdDefineSurface *cmd; local 362 SVGA3dCmdDestroySurface *cmd; local 427 SVGA3dCmdSurfaceDMA *cmd; local 485 SVGA3dCmdSurfaceDMA *cmd; local 575 SVGA3dCmdSetRenderTarget *cmd; local 634 SVGA3dCmdDefineShader *cmd; local 678 SVGA3dCmdDestroyShader *cmd; local 725 SVGA3dCmdSetShaderConst *cmd; local 792 SVGA3dCmdSetShaderConst *cmd; local 842 SVGA3dCmdSetShader *cmd; local 893 SVGA3dCmdClear *cmd; local 990 SVGA3dCmdDrawPrimitives *cmd; local 1047 SVGA3dCmdSurfaceCopy *cmd; local 1091 SVGA3dCmdSurfaceStretchBlt *cmd; local 1132 SVGA3dCmdSetViewport *cmd; local 1171 SVGA3dCmdSetScissorRect *cmd; local 1208 SVGA3dCmdSetClipPlane *cmd; local 1249 SVGA3dCmdSetZRange *cmd; local 1296 SVGA3dCmdSetTextureState *cmd; local 1342 SVGA3dCmdSetRenderState *cmd; local 1378 SVGA3dCmdBeginQuery *cmd; local 1417 SVGA3dCmdEndQuery *cmd; local 1464 SVGA3dCmdWaitForQuery *cmd; local [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_cmd.c | 106 uint32 cmd, // IN 116 header->id = cmd; 161 SVGA3dCmdDefineContext *cmd; local 163 cmd = SVGA3D_FIFOReserve(swc, 164 SVGA_3D_CMD_CONTEXT_DEFINE, sizeof *cmd, 0); 165 if(!cmd) 168 cmd->cid = swc->cid; 195 SVGA3dCmdDestroyContext *cmd; local 197 cmd = SVGA3D_FIFOReserve(swc, 198 SVGA_3D_CMD_CONTEXT_DESTROY, sizeof *cmd, 0) 275 SVGA3dCmdDefineSurface *cmd; local 362 SVGA3dCmdDestroySurface *cmd; local 427 SVGA3dCmdSurfaceDMA *cmd; local 485 SVGA3dCmdSurfaceDMA *cmd; local 575 SVGA3dCmdSetRenderTarget *cmd; local 634 SVGA3dCmdDefineShader *cmd; local 678 SVGA3dCmdDestroyShader *cmd; local 725 SVGA3dCmdSetShaderConst *cmd; local 792 SVGA3dCmdSetShaderConst *cmd; local 842 SVGA3dCmdSetShader *cmd; local 893 SVGA3dCmdClear *cmd; local 990 SVGA3dCmdDrawPrimitives *cmd; local 1047 SVGA3dCmdSurfaceCopy *cmd; local 1091 SVGA3dCmdSurfaceStretchBlt *cmd; local 1132 SVGA3dCmdSetViewport *cmd; local 1171 SVGA3dCmdSetScissorRect *cmd; local 1208 SVGA3dCmdSetClipPlane *cmd; local 1249 SVGA3dCmdSetZRange *cmd; local 1296 SVGA3dCmdSetTextureState *cmd; local 1342 SVGA3dCmdSetRenderState *cmd; local 1378 SVGA3dCmdBeginQuery *cmd; local 1417 SVGA3dCmdEndQuery *cmd; local 1464 SVGA3dCmdWaitForQuery *cmd; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/ |
svga_dump.c | 41 dump_SVGA3dVertexDecl(const SVGA3dVertexDecl *cmd) 43 switch((*cmd).identity.type) { 99 _debug_printf("\t\t.identity.type = %i\n", (*cmd).identity.type); 102 switch((*cmd).identity.method) { 125 _debug_printf("\t\t.identity.method = %i\n", (*cmd).identity.method); 128 switch((*cmd).identity.usage) { 175 _debug_printf("\t\t.identity.usage = %i\n", (*cmd).identity.usage); 178 _debug_printf("\t\t.identity.usageIndex = %u\n", (*cmd).identity.usageIndex); 179 _debug_printf("\t\t.array.surfaceId = %u\n", (*cmd).array.surfaceId); 180 _debug_printf("\t\t.array.offset = %u\n", (*cmd).array.offset) 1491 const SVGA3dCmdDefineSurface *cmd = (const SVGA3dCmdDefineSurface *)body; local 1503 const SVGA3dCmdDestroySurface *cmd = (const SVGA3dCmdDestroySurface *)body; local 1511 const SVGA3dCmdSurfaceCopy *cmd = (const SVGA3dCmdSurfaceCopy *)body; local 1523 const SVGA3dCmdSurfaceStretchBlt *cmd = (const SVGA3dCmdSurfaceStretchBlt *)body; local 1531 const SVGA3dCmdSurfaceDMA *cmd = (const SVGA3dCmdSurfaceDMA *)body; local 1547 const SVGA3dCmdDefineContext *cmd = (const SVGA3dCmdDefineContext *)body; local 1555 const SVGA3dCmdDestroyContext *cmd = (const SVGA3dCmdDestroyContext *)body; local 1563 const SVGA3dCmdSetTransform *cmd = (const SVGA3dCmdSetTransform *)body; local 1571 const SVGA3dCmdSetZRange *cmd = (const SVGA3dCmdSetZRange *)body; local 1579 const SVGA3dCmdSetRenderState *cmd = (const SVGA3dCmdSetRenderState *)body; local 1591 const SVGA3dCmdSetRenderTarget *cmd = (const SVGA3dCmdSetRenderTarget *)body; local 1599 const SVGA3dCmdSetTextureState *cmd = (const SVGA3dCmdSetTextureState *)body; local 1611 const SVGA3dCmdSetMaterial *cmd = (const SVGA3dCmdSetMaterial *)body; local 1619 const SVGA3dCmdSetLightData *cmd = (const SVGA3dCmdSetLightData *)body; local 1627 const SVGA3dCmdSetLightEnabled *cmd = (const SVGA3dCmdSetLightEnabled *)body; local 1635 const SVGA3dCmdSetViewport *cmd = (const SVGA3dCmdSetViewport *)body; local 1643 const SVGA3dCmdSetClipPlane *cmd = (const SVGA3dCmdSetClipPlane *)body; local 1651 const SVGA3dCmdClear *cmd = (const SVGA3dCmdClear *)body; local 1663 const SVGA3dCmdPresent *cmd = (const SVGA3dCmdPresent *)body; local 1675 const SVGA3dCmdDefineShader *cmd = (const SVGA3dCmdDefineShader *)body; local 1687 const SVGA3dCmdDestroyShader *cmd = (const SVGA3dCmdDestroyShader *)body; local 1695 const SVGA3dCmdSetShader *cmd = (const SVGA3dCmdSetShader *)body; local 1703 const SVGA3dCmdSetShaderConst *cmd = (const SVGA3dCmdSetShaderConst *)body; local 1712 const SVGA3dCmdDrawPrimitives *cmd = (const SVGA3dCmdDrawPrimitives *)body; local 1733 const SVGA3dCmdSetScissorRect *cmd = (const SVGA3dCmdSetScissorRect *)body; local 1741 const SVGA3dCmdBeginQuery *cmd = (const SVGA3dCmdBeginQuery *)body; local 1749 const SVGA3dCmdEndQuery *cmd = (const SVGA3dCmdEndQuery *)body; local 1757 const SVGA3dCmdWaitForQuery *cmd = (const SVGA3dCmdWaitForQuery *)body; local 1765 const SVGA3dCmdBlitSurfaceToScreen *cmd = (const SVGA3dCmdBlitSurfaceToScreen *)body; local [all...] |
/external/mesa3d/src/gallium/drivers/svga/svgadump/ |
svga_dump.c | 41 dump_SVGA3dVertexDecl(const SVGA3dVertexDecl *cmd) 43 switch((*cmd).identity.type) { 99 _debug_printf("\t\t.identity.type = %i\n", (*cmd).identity.type); 102 switch((*cmd).identity.method) { 125 _debug_printf("\t\t.identity.method = %i\n", (*cmd).identity.method); 128 switch((*cmd).identity.usage) { 175 _debug_printf("\t\t.identity.usage = %i\n", (*cmd).identity.usage); 178 _debug_printf("\t\t.identity.usageIndex = %u\n", (*cmd).identity.usageIndex); 179 _debug_printf("\t\t.array.surfaceId = %u\n", (*cmd).array.surfaceId); 180 _debug_printf("\t\t.array.offset = %u\n", (*cmd).array.offset) 1491 const SVGA3dCmdDefineSurface *cmd = (const SVGA3dCmdDefineSurface *)body; local 1503 const SVGA3dCmdDestroySurface *cmd = (const SVGA3dCmdDestroySurface *)body; local 1511 const SVGA3dCmdSurfaceCopy *cmd = (const SVGA3dCmdSurfaceCopy *)body; local 1523 const SVGA3dCmdSurfaceStretchBlt *cmd = (const SVGA3dCmdSurfaceStretchBlt *)body; local 1531 const SVGA3dCmdSurfaceDMA *cmd = (const SVGA3dCmdSurfaceDMA *)body; local 1547 const SVGA3dCmdDefineContext *cmd = (const SVGA3dCmdDefineContext *)body; local 1555 const SVGA3dCmdDestroyContext *cmd = (const SVGA3dCmdDestroyContext *)body; local 1563 const SVGA3dCmdSetTransform *cmd = (const SVGA3dCmdSetTransform *)body; local 1571 const SVGA3dCmdSetZRange *cmd = (const SVGA3dCmdSetZRange *)body; local 1579 const SVGA3dCmdSetRenderState *cmd = (const SVGA3dCmdSetRenderState *)body; local 1591 const SVGA3dCmdSetRenderTarget *cmd = (const SVGA3dCmdSetRenderTarget *)body; local 1599 const SVGA3dCmdSetTextureState *cmd = (const SVGA3dCmdSetTextureState *)body; local 1611 const SVGA3dCmdSetMaterial *cmd = (const SVGA3dCmdSetMaterial *)body; local 1619 const SVGA3dCmdSetLightData *cmd = (const SVGA3dCmdSetLightData *)body; local 1627 const SVGA3dCmdSetLightEnabled *cmd = (const SVGA3dCmdSetLightEnabled *)body; local 1635 const SVGA3dCmdSetViewport *cmd = (const SVGA3dCmdSetViewport *)body; local 1643 const SVGA3dCmdSetClipPlane *cmd = (const SVGA3dCmdSetClipPlane *)body; local 1651 const SVGA3dCmdClear *cmd = (const SVGA3dCmdClear *)body; local 1663 const SVGA3dCmdPresent *cmd = (const SVGA3dCmdPresent *)body; local 1675 const SVGA3dCmdDefineShader *cmd = (const SVGA3dCmdDefineShader *)body; local 1687 const SVGA3dCmdDestroyShader *cmd = (const SVGA3dCmdDestroyShader *)body; local 1695 const SVGA3dCmdSetShader *cmd = (const SVGA3dCmdSetShader *)body; local 1703 const SVGA3dCmdSetShaderConst *cmd = (const SVGA3dCmdSetShaderConst *)body; local 1712 const SVGA3dCmdDrawPrimitives *cmd = (const SVGA3dCmdDrawPrimitives *)body; local 1733 const SVGA3dCmdSetScissorRect *cmd = (const SVGA3dCmdSetScissorRect *)body; local 1741 const SVGA3dCmdBeginQuery *cmd = (const SVGA3dCmdBeginQuery *)body; local 1749 const SVGA3dCmdEndQuery *cmd = (const SVGA3dCmdEndQuery *)body; local 1757 const SVGA3dCmdWaitForQuery *cmd = (const SVGA3dCmdWaitForQuery *)body; local 1765 const SVGA3dCmdBlitSurfaceToScreen *cmd = (const SVGA3dCmdBlitSurfaceToScreen *)body; local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
fcntl.c | 10 int fcntl(int fd, int cmd, ...) { 12 va_start(ap, cmd); 13 int rtn = ki_fcntl(fd, cmd, ap);
|
/external/clang/test/Analysis/ |
rdar-6541136-region.c | 11 struct load_wine *cmd = (void*) &wonky[1]; local 12 cmd = cmd; 23 struct load_wine *cmd = (void*) &wonky[1]; local 24 cmd = cmd;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
feedPublish.sh | 35 cmd="$JAVA_HOME/bin/java -debug -Dant.home=$ANT_HOME -Dant.library.dir=$JAVA_HOME/lib -classpath $CLASSPATH org.apache.tools.ant.launch.Launcher" 36 cmd=$cmd" -buildfile feedPublish.xml -propertyfile ../properties/feedPublish.$projectName.properties" 37 cmd=$cmd" -Dbranch=$branch -Dversion=$version -DbuildID=$buildID -DbuildAlias=$buildAlias -DbuildType="${buildID:0:1}; 38 cmd=$cmd" -DdependencyURLs=$dependencyURLs -Ddebug=$debug"; 39 echo ""; echo $cmd | sed -e "s/ \-/# \-/g" -e "s/.jar:/.jar# :/g" | tr "#" "\n"; echo ""; 40 $cmd;
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
dhdu_cmd.h | 24 typedef struct cmd cmd_t; 25 typedef int (cmd_func_t)(void *dhd, cmd_t *cmd, char **argv); 28 struct cmd { struct 46 extern int dhd_get(void *dhd, int cmd, void *buf, int len); 47 extern int dhd_set(void *dhd, int cmd, void *buf, int len);
|
/external/chromium_org/gpu/command_buffer/client/ |
cmd_buffer_helper.h | 101 COMPILE_ASSERT(T::kArgFlags == cmd::kFixed, Cmd_kArgFlags_not_kFixed); 110 COMPILE_ASSERT(T::kArgFlags == cmd::kAtLeastN, Cmd_kArgFlags_not_kAtLeastN); 119 COMPILE_ASSERT(T::kArgFlags == cmd::kAtLeastN, Cmd_kArgFlags_not_kAtLeastN); 135 cmd::Noop* cmd = GetImmediateCmdSpace<cmd::Noop>( local 137 if (cmd) { 138 cmd->Init(skip_count); 143 cmd::SetToken* cmd = GetCmdSpace<cmd::SetToken>() local 150 cmd::SetBucketSize* cmd = GetCmdSpace<cmd::SetBucketSize>(); local 161 cmd::SetBucketData* cmd = GetCmdSpace<cmd::SetBucketData>(); local 173 cmd::SetBucketDataImmediate* cmd = local 187 cmd::GetBucketStart* cmd = GetCmdSpace<cmd::GetBucketStart>(); local 203 cmd::GetBucketData* cmd = GetCmdSpace<cmd::GetBucketData>(); local [all...] |