/external/skia/tools/ |
skdiff_main.cpp | 497 static void usage (char * argv0) { function 500 "Usage: \n" 621 usage(argv[0]); 677 usage(argv[0]); 683 usage(argv[0]); 690 usage(argv[0]);
|
/external/smali/smali/src/main/java/org/jf/smali/ |
main.java | 97 usage(); method 129 usage(true); 133 usage(false); 169 usage(); method 334 * Prints the usage message. 336 private static void usage(boolean printDebugOptions) { method in class:main 350 private static void usage() { method in class:main 351 usage(false);
|
/external/srec/tools/test_g2g/ |
test_g2g.c | 61 int usage(LCHAR* exename) function 63 pfprintf(PSTDOUT,"usage: %s -base <basefilename> \n",exename); 116 usage(argv[0]);
|
/external/v8/src/ |
platform-posix.cc | 170 struct rusage usage; local 172 if (getrusage(RUSAGE_SELF, &usage) < 0) return -1; 173 *secs = usage.ru_utime.tv_sec; 174 *usecs = usage.ru_utime.tv_usec;
|
/external/valgrind/main/VEX/switchback/ |
switchback.c | 1036 static void usage ( void ) function 1038 printf("usage: switchback #bbs\n"); 1103 usage();
|
/external/webrtc/src/modules/audio_processing/test/ |
process_test.cc | 74 void usage() { function in namespace:__anon28692 76 "Usage: process_test [options] [-pb PROTOBUF_FILE]\n" 135 usage(); [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wpa_priv.c | 937 static void usage(void) function 943 "usage:\n" 983 usage(); 989 usage();
|
/external/yaffs2/yaffs2/utils/ |
mkyaffs2image.c | 520 static void usage(void) function 523 fprintf(stderr,"usage: mkyaffs2image [-f] [-c <size>] [-s <size>] dir image_file [file_contexts mountpoint] [convert]\n"); 555 usage(); 561 usage(); 566 usage(); 584 usage(); 588 usage();
|
/frameworks/av/cmds/screenrecord/ |
screenrecord.cpp | 614 * Dumps usage on stderr. 616 static void usage() { function 618 "Usage: screenrecord [options] <filename>\n" 667 usage();
|
/frameworks/av/cmds/stagefright/ |
sf2.cpp | 550 static void usage(const char *me) { function 551 fprintf(stderr, "usage: %s\n", me); 586 usage(argv[0]); 596 usage(argv[-optind]);
|
/hardware/libhardware/modules/camera/ |
Camera.cpp | 349 // Set up all streams (calculate usage/max_buffers for each) 434 * streams, and then produce usage and max_buffer values for each stream. 443 uint32_t usage = 0; local 446 usage |= GRALLOC_USAGE_SW_WRITE_OFTEN | 449 usage |= GRALLOC_USAGE_SW_READ_OFTEN | 452 streams[i]->setUsage(usage);
|
/hardware/libhardware/tests/camera2/ |
camera2_utils.cpp | 353 uint32_t usage; local 357 &id, &formatActual, &usage, &maxBuffers); 367 mUsage = usage; 383 ALOGE("%s: Unable to configure usage %08x for stream %d",
|
/hardware/libhardware/tests/hwc/ |
cnativewindow.c | 320 TRACE("set usage %d\n", va_arg(ap,int)); 428 static aBuffer *cnw_alloc(CNativeWindow *win, unsigned format, unsigned usage) { 447 buf->usage = usage; 450 format, usage, &buf->handle, &buf->stride); 466 unsigned usage, format; local 503 usage = GRALLOC_USAGE_HW_FB | 508 aBuffer *buf = cnw_alloc(win, win->format, usage); 515 win->spare = cnw_alloc(win, win->format, usage);
|
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_copybit.cpp | 417 int usage = GRALLOC_USAGE_PRIVATE_IOMMU_HEAP; local 419 if (0 == alloc_buffer(&tmpHnd, tmp_w, tmp_h, fbHandle->format, usage)){
|
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc_copybit.cpp | 417 int usage = GRALLOC_USAGE_PRIVATE_IOMMU_HEAP; local 419 if (0 == alloc_buffer(&tmpHnd, tmp_w, tmp_h, fbHandle->format, usage)){
|
/system/core/toolbox/ |
getevent.c | 473 static void usage(int argc, char *argv[]) function 475 fprintf(stderr, "Usage: %s [-t] [-n] [-s switchmask] [-S] [-v [mask]] [-d] [-p] [-i] [-l] [-q] [-c count] [-r] [device]\n", argv[0]); 573 usage(argc, argv); 585 usage(argc, argv);
|
/system/extras/librank/ |
librank.c | 38 pm_memusage_t usage; member in struct:mapping_info 50 static void usage(char *myname); 152 pm_memusage_zero(&mapping->usage); 277 usage(argv[0]); 306 usage(argv[0]); 363 fprintf(stderr, "Error getting map memory usage of " 373 pm_memusage_add(&mi->usage, &map_usage); 405 mi->usage.vss / 1024, 406 mi->usage.rss / 1024, 407 mi->usage.pss / 1024 423 static void usage(char *myname) { function [all...] |
/cts/tools/dasm/src/java_cup/ |
Main.java | 46 * <dd> print time usage summary 208 /** Print a "usage message" that described possible command line options, 210 * @param message a specific error message to preface the usage message by. 212 protected static void usage(String message) method in class:Main 218 "Usage: " + version.program_name + " [options]\n" + 231 " -time print time usage summary\n" + 260 usage("-package must have a name argument"); 270 usage("-parser must have a name argument"); 279 usage("-input must have a name argument"); 289 usage("-symbols must have a name argument") [all...] |
/dalvik/vm/ |
Init.cpp | 79 * Show usage. 83 static void usage(const char* progName) function 806 /* show usage and stop */ [all...] |
/external/chromium_org/content/browser/fileapi/ |
copy_or_move_operation_delegate_unittest.cc | 231 int64 usage = 0; local 232 GetUsageAndQuota(src_type_, &usage, NULL); 233 return usage; 237 int64 usage = 0; local 238 GetUsageAndQuota(dest_type_, &usage, NULL); 239 return usage; 367 void GetUsageAndQuota(FileSystemType type, int64* usage, int64* quota) { 369 quota_manager_.get(), origin_, type, usage, quota);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
bencher | 238 puts "Use the --help option to get basic usage information." 242 def usage method [all...] |
/external/chromium_org/third_party/gtk+/gtk/ |
compose-parse.py | 148 def usage(): function 167 usage() 182 usage() [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_texture.c | 427 unsigned usage = R600_TEX_IS_TILED(rtex, 0) ? PIPE_USAGE_STATIC : base->usage; local 429 if (!r600_init_resource(rscreen, resource, rtex->size, base_align, base->bind, usage)) { 460 templ->usage != PIPE_USAGE_STAGING && 461 templ->usage != PIPE_USAGE_STREAM) { 503 surface->base.usage = templ->usage; 580 resource.usage = staging ? PIPE_USAGE_STAGING : PIPE_USAGE_STATIC; 600 unsigned usage, 621 if (!(usage & PIPE_TRANSFER_READ) & [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/ |
tr_context.c | 1451 unsigned usage = transfer->usage; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_exec_api.c | 1146 GLenum usage = GL_STREAM_DRAW_ARB; local [all...] |