Home
last modified time | relevance | path

Searched refs:pname (Results 1 – 5 of 5) sorted by relevance

/system/core/libpixelflinger/include/pixelflinger/
Dpixelflinger.h252 GGLenum pname,
256 GGLenum pname, const GGLfixed* params);
260 GGLenum pname,
273 void (*texGeni)(void* c, GGLenum coord, GGLenum pname, GGLint param);
/system/extras/app-launcher/
Dcomputestatsf.c11 char *pname; variable
51 pname = argv[0]; in main()
Dcomputestats.c11 char *pname; variable
51 pname = argv[0]; in main()
/system/core/libpixelflinger/
Dpixelflinger.cpp333 GGLenum pname, in ggl_texEnvi() argument
337 if (target != GGL_TEXTURE_ENV || pname != GGL_TEXTURE_ENV_MODE) { in ggl_texEnvi()
358 GGLenum pname, const GGLfixed* params) in ggl_texEnvxv() argument
365 switch (pname) { in ggl_texEnvxv()
367 ggl_texEnvi(con, target, pname, params[0]); in ggl_texEnvxv()
390 GGLenum pname, in ggl_texParameteri() argument
403 switch (pname) { in ggl_texParameteri()
477 static void ggl_texGeni(void* con, GGLenum coord, GGLenum pname, GGLint param) in ggl_texGeni() argument
480 if (pname != GGL_TEXTURE_GEN_MODE) { in ggl_texGeni()
/system/core/fastboot/
Dfastboot.cpp1243 static void do_flash(const char* pname, const char* fname) { in do_flash() argument
1249 if (is_logical(pname)) { in do_flash()
1250 fb->ResizePartition(pname, std::to_string(buf.image_size)); in do_flash()
1252 flash_buf(pname, &buf); in do_flash()
2040 std::string pname = next_arg(&args); in Main() local
2046 fname = find_item(pname); in Main()
2048 if (fname.empty()) die("cannot determine image filename for '%s'", pname.c_str()); in Main()
2063 do_for_partitions(pname, slot_override, flash, true); in Main()