HomeSort by relevance Sort by last modified time
    Searched refs:usage (Results 126 - 150 of 837) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/iproute2/tc/
tc_monitor.c 29 static void usage(void) __attribute__((noreturn));
31 static void usage(void) function
33 fprintf(stderr, "Usage: tc monitor\n");
79 usage();
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 49 byte[] usage = blocks[k].localsUsage;
52 usage[i] = READ;
72 byte[] usage = tb.localsUsage;
73 int n = usage.length;
76 in[i] = usage[i] == READ;
95 in[k] = usage[k] == UNKNOWN && e.inputs[k];
115 byte[] usage = tb.localsUsage;
116 int n = usage.length;
119 in[i] = usage[i] == READ;
144 byte[] usage = tb.localsUsage
    [all...]
  /external/skia/gpu/src/
GrGLIndexBuffer.cpp 105 GrGLenum usage = dynamic() ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW; local
107 GR_GL(BufferData(GR_GL_ELEMENT_ARRAY_BUFFER, srcSizeInBytes, src, usage));
109 GR_GL(BufferData(GR_GL_ELEMENT_ARRAY_BUFFER, size(), NULL, usage));
  /external/webkit/Tools/Scripts/
run-leaks 45 my $usage =
46 "Usage: " . basename($0) . " [options] pid | executable name\n" .
63 print STDERR $usage;
69 print STDERR $usage;
  /system/core/toolbox/
chmod.c 48 static int usage() function
50 fprintf(stderr, "Usage: chmod [OPTION] <MODE> <FILE>\n");
62 return usage();
69 return usage();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
ExtendedKeyUsage.java 56 KeyPurposeId usage)
58 this.seq = new DERSequence(usage);
60 this.usageTable.put(usage, usage);
  /external/icu4c/tools/genpname/
gensvpa.pl 40 usage() unless defined $destdir;
41 usage() unless defined $iso;
42 usage() unless defined $prop;
149 sub usage { subroutine
151 Usage:
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebSecurityOriginPrivate.h 58 - (unsigned long long)usage;
  /external/wpa_supplicant/
main.c 37 static void usage(void) function
41 "usage:\n"
188 usage();
240 usage();
261 usage();
  /external/wpa_supplicant_6/wpa_supplicant/
main.c 24 static void usage(void) function
28 "usage:\n"
174 usage();
223 usage();
244 usage();
  /frameworks/base/include/surfaceflinger/
IGraphicBufferAlloc.h 40 PixelFormat format, uint32_t usage, status_t* error) = 0;
  /frameworks/base/include/ui/
GraphicBufferMapper.h 46 int usage, const Rect& bounds, void** vaddr);
  /system/core/netcfg/
netcfg.c 45 void usage(void) function
47 fprintf(stderr,"usage: netcfg [<interface> {dhcp|up|down}]\n");
151 if(argc < 3) usage();
154 if(strlen(iname) > 16) usage();
181 usage();
  /build/tools/atree/
atree.cpp 23 const char* USAGE =
25 "Usage: atree OPTIONS\n"
59 int usage() function
61 fwrite(USAGE, strlen(USAGE), 1, stderr);
115 return usage();
126 return usage();
135 return usage();
144 return usage();
149 return usage();
    [all...]
  /external/openssl/
import_openssl.sh 37 function usage() { function
43 echo "Usage:"
77 shift || usage "No command specified. Try import, regenerate, or generate."
80 shift || usage "No tar file specified."
84 shift || usage "No patch file specified."
85 [ -d $OPENSSL_DIR ] || usage "$OPENSSL_DIR not found, did you mean to use generate?"
86 [ -d $OPENSSL_DIR_ORIG_ORIG ] || usage "$OPENSSL_DIR_ORIG not found, did you mean to use generate?"
90 shift || usage "No patch file specified."
92 shift || usage "No tar file specified."
95 usage "Unknown command specified $command. Try import, regenerate, or generate.
    [all...]
  /cts/tools/signature-tools/src/signature/
Main.java 30 private static final String USAGE_MESSAGE = "usage:\n"
96 usage(); method
110 * Prints the usage message.
112 private static void usage() { method in class:Main
  /dalvik/dvz/
dvz.cpp 85 static void usage(const char *argv0) { function
86 fprintf(stderr,"Usage: %s [--help] [-classpath <classpath>] \n"
98 usage(argv[0]);
  /external/chromium/chrome/browser/resources/file_manager/bin/
squashdir.py 12 def usage(): function
13 print("""Usage: squashdir.py <dest-dir> <source-dir> ...
49 usage()
  /external/e2fsprogs/e2fsck/
extend.c 19 static void usage(char *progname) function
36 usage(argv[0]);
  /external/e2fsprogs/tests/progs/
test_icount.c 104 const char *usage = "usage: %s inode\n"; local
110 printf(usage, argv[0]);
127 const char *usage = "usage: %s inode\n"; local
133 printf(usage, argv[0]);
151 const char *usage = "usage: %s inode\n"; local
157 printf(usage, argv[0]);
175 const char *usage = "usage: %s inode count\n" local
    [all...]
  /external/openssl/crypto/pkcs12/
p12_attr.c 75 /* Add key usage to PKCS#8 structure */
77 int PKCS8_add_keyusage(PKCS8_PRIV_KEY_INFO *p8, int usage)
80 us_val = (unsigned char) usage;
  /external/srec/tools/make_g2g/
make_g2g.c 40 static void usage(LCHAR* exename) function
42 LFPRINTF(stdout,"usage: %s -base <base grammar filename> [-out <output file>] \n",exename);
99 usage(argv[0]);
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocator.h 37 enum Usage {
48 static void* reserveUncommitted(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
60 static void* reserveAndCommit(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
66 static void* reserveAndCommit(size_t reserveSize, size_t commitSize, Usage = UnknownUsage, bool writable = true, bool executable = false);
70 inline void* OSAllocator::reserveAndCommit(size_t reserveSize, size_t commitSize, Usage usage, bool writable, bool executable)
72 void* base = reserveUncommitted(reserveSize, usage, writable, executable);
PageAllocation.h 77 Callers may also optinally provide a flag indicating the usage (for use by
78 system memory usage tracking tools, where implemented), and boolean values
99 static PageAllocation allocate(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
102 return PageAllocation(OSAllocator::reserveAndCommit(size, usage, writable, executable), size);
PageReservation.h 104 static PageReservation reserve(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
107 return PageReservation(OSAllocator::reserveUncommitted(size, usage, writable, executable), size, writable, executable);

Completed in 531 milliseconds

1 2 3 4 56 7 8 91011>>