/prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/ |
keywords.txt | 7 # Usage:
|
/sdk/attribute_stats/ |
README.txt | 4 This program gathers statistics about attribute usage in layout
|
/sdk/emulator/opengl/system/gralloc/ |
gralloc.cpp | 130 int w, int h, int format, int usage, 133 D("gralloc_alloc w=%d h=%d usage=0x%x\n", w, h, usage); 140 // Validate usage: buffer cannot be written both by s/w and h/w access. 142 bool sw_write = (0 != (usage & GRALLOC_USAGE_SW_WRITE_MASK)); 143 bool hw_write = (usage & GRALLOC_USAGE_HW_RENDER); 147 bool sw_read = (0 != (usage & GRALLOC_USAGE_SW_READ_MASK)); 199 if (usage & GRALLOC_USAGE_HW_FB) { 231 cb_handle_t *cb = new cb_handle_t(fd, ashmem_size, usage, 252 if (usage & GRALLOC_USAGE_HW_MASK) [all...] |
/sdk/emulator/qtools/ |
exc_dump.cpp | 8 fprintf(stderr, "Usage: %s trace_file\n", argv[0]);
|
/system/core/libdiskconfig/ |
dump_diskconfig.c | 31 ALOGE("usage: %s <conf file>", argv[0]);
|
/system/core/toolbox/ |
restorecon.c | 18 static void usage(void) function 20 fprintf(stderr, "usage: %s [-f file_contexts] [-nrRv] pathname...\n", progname); 83 usage(); 90 usage();
|
rmmod.c | 18 fprintf(stderr, "usage: rmmod <module>\n");
|
rm.c | 10 static int usage() function 73 return usage();
|
/system/extras/tests/ext4/ |
rand_emmc_perf.c | 37 static void usage(void) { function 38 fprintf(stderr, "Usage: rand_emmc_perf [ -r | -w ] [-o] <size_in_mb> <block_dev>\n"); 56 usage(); 80 usage();
|
/system/vold/ |
vdc.c | 35 static void usage(char *progname); 43 usage(argv[0]); 148 static void usage(char *progname) { function 149 fprintf(stderr, "Usage: %s <monitor>|<cmd> [arg1] [arg2...]\n", progname);
|
/external/chromium/net/tools/fetch/ |
fetch_server.cc | 20 void usage(const char* program_name) { function 21 printf("usage: %s\n", program_name);
|
/external/e2fsprogs/misc/ |
chattr.c | 82 static void usage(void) function 85 _("Usage: %s [-RVf] [-+=AacDdeijsSu] [-v version] files...\n"), 149 usage (); 155 usage (); 161 usage(); 170 usage(); 178 usage(); 318 usage ();
|
/external/iproute2/man/man8/ |
rtmon.8 | 44 means that no networking protocol is involved and 'help' prints usage information. 54 .SH USAGE EXAMPLES
|
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/ |
JSilverTest.java | 28 * Usage: JSilverTest file.cs [file.hdf file2.hdf ...] 33 System.out.println("Usage: JSilverTest file.cs [file.hdf file2.hdf ...]");
|
/external/libmtp/examples/ |
trexist.c | 26 static void usage (void) function 41 usage();
|
/external/linux-tools-perf/scripts/python/ |
syscall-counts.py | 18 usage = "perf script -s syscall-counts.py [comm]\n"; variable 23 sys.exit(usage)
|
/external/mtpd/ |
mtpd.h | 54 /* The usage of the arguments. */ 55 char *usage; member in struct:protocol
|
/external/qemu/ |
gen-skin.py | 6 # usage: 70 print "usage: progname skindirpath > default-skin.h"
|
/external/webkit/Source/JavaScriptCore/wtf/ |
PageAllocationAligned.h | 44 static PageAllocationAligned allocate(size_t size, size_t alignment, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false);
|
/external/wpa_supplicant_8/hostapd/ |
hostapd_cli.1 | 48 Show usage. 68 Get usage help.
|
/frameworks/base/docs/html/tools/help/ |
etc1tool.jd | 10 <p>The usage for <code>etc1tool</code> is:</p> 30 <td>Print usage information</td>
|
/frameworks/base/tools/preload/ |
Compile.java | 27 * to measure and record the memory usage of each class. 35 System.err.println("Usage: Compile [log file] [output file]");
|
/hardware/libhardware/include/hardware/ |
gralloc.h | 79 /* mask for the software usage bit-mask */ 95 /* implementation-specific private usage flags */ 148 * specified usage. This call may block, for instance if the h/w needs 157 * If usage specifies GRALLOC_USAGE_SW_*, vaddr is filled with the address 172 * If the buffer was created with a usage mask incompatible with the 173 * requested usage flags here, -EINVAL is returned. 178 buffer_handle_t handle, int usage, 221 int w, int h, int format, int usage,
|
/system/core/mkbootimg/ |
mkbootimg.c | 58 int usage(void) function 60 fprintf(stderr,"usage: mkbootimg\n" 128 return usage(); 157 return usage(); 165 return usage(); 170 return usage(); 175 return usage(); 180 return usage();
|
/frameworks/base/graphics/java/android/renderscript/ |
Allocation.java | 97 * The usage of the allocation. These signal to renderscript 136 * consumer. This usage will cause the allocation to be created 203 * Get the usage flags of the Allocation. 205 * @return usage flags associated with the allocation. e.g. 236 Allocation(int id, RenderScript rs, Type t, int usage) { 238 if ((usage & ~(USAGE_SCRIPT | 245 throw new RSIllegalArgumentException("Unknown usage specified."); 248 if ((usage & USAGE_IO_INPUT) != 0) { 251 if ((usage & ~(USAGE_IO_INPUT | 254 throw new RSIllegalArgumentException("Invalid usage combination.") [all...] |