HomeSort by relevance Sort by last modified time
    Searched defs:hello (Results 1 - 16 of 16) sorted by null

  /dalvik/dx/tests/042-dex-ignore-result/
Blort.java 19 static public int hello() { method in class:Blort
24 hello(); method
25 hello(); method
  /external/stlport/test/unit/
strstream_buffer_read_test.cpp 29 char hello[] = "Hello"; local
30 strstream stream(hello, sizeof(hello), ios_base::in);
  /ndk/tests/device/test-gnustl-full/unit/
strstream_buffer_read_test.cpp 29 char hello[] = "Hello"; local
30 strstream stream(hello, sizeof(hello), ios_base::in);
  /ndk/tests/device/test-stlport/unit/
strstream_buffer_read_test.cpp 29 char hello[] = "Hello"; local
30 strstream stream(hello, sizeof(hello), ios_base::in);
  /external/bluetooth/glib/tests/
file-test.c 56 const char hello[] = "Hello, World"; local
57 const int hellolen = sizeof (hello) - 1;
75 i = write (fd, hello, hellolen);
85 g_assert (strcmp (chars, hello) == 0 && "read() didn't get same string back");
testglib.c 902 const char hello[] = "Hello, World"; local
903 const int hellolen = sizeof (hello) - 1;
918 n = write (fd, hello, hellolen);
932 if (strcmp (chars, hello) != 0)
933 g_error ("wrote '%s', but got '%s'\n", hello, chars);
    [all...]
  /external/zlib/
example.c 29 const char hello[] = "hello, hello!"; variable
30 /* "hello world" would be more standard, but the repeated "hello"
34 const char dictionary[] = "hello";
64 uLong len = (uLong)strlen(hello)+1;
66 err = compress(compr, &comprLen, (const Bytef*)hello, len);
74 if (strcmp((char*)uncompr, hello)) {
94 int len = (int)strlen(hello)+1
    [all...]
  /hardware/ril/mock-ril/src/js/
mock_ril.js 126 var myObject = { 'field1' : '1', 'field2' : '2', 'hello' : [ 'hi', 'there' ] };
  /development/samples/ApiDemos/src/com/example/android/apis/app/
TextToSpeechActivity.java 119 "Hello",
128 // Select a random hello.
130 String hello = HELLOS[RANDOM.nextInt(helloLength)]; local
131 mTts.speak(hello,
  /external/icu4c/test/intltest/
itutil.cpp 323 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
325 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
404 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
407 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
  /external/tcpdump/
print-decnet.c 183 int src, dst, info, blksize, eco, ueco, hello, other, vers; local
201 hello = EXTRACT_LE_16BITS(cmp->cm_init.in_hello);
204 "src %sblksize %d vers %d eco %d ueco %d hello %d",
206 hello);
250 (void)printf("router-hello ");
263 hello = EXTRACT_LE_16BITS(cmp->cm_rhello.rh_hello);
266 "vers %d eco %d ueco %d src %s blksize %d pri %d hello %d",
268 blksize, priority, hello);
273 (void)printf("endnode-hello ");
289 hello = EXTRACT_LE_16BITS(cmp->cm_ehello.eh_hello)
    [all...]
print-olsr.c 80 { OLSR_HELLO_MSG, "Hello" },
86 { OLSR_HELLO_LQ_MSG, "Hello-LQ" },
210 const struct olsr_hello *hello; member in union:__anon7753
281 ptr.hello = (struct olsr_hello *)msg_data;
282 printf("\n\t hello-time %.3lfs, MPR willingness %u",
283 ME_TO_DOUBLE(ptr.hello->htime), ptr.hello->will);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client_write.c 51 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
69 hello = os_malloc(len);
70 if (hello == NULL)
72 end = hello + len;
74 rhdr = hello;
122 os_free(hello);
128 return hello;
  /development/ndk/platforms/android-9/samples/native-audio/jni/
native-audio-jni.c 42 static const char hello[] = variable
346 nextBuffer = (short *) hello;
347 nextSize = sizeof(hello);
  /development/simulator/wrapsim/
SimMgr.c 681 * Prepare communication with the front end. We wait for a "hello" from
687 static const unsigned int hello = kHelloMsg; local
692 wsLog("hello read failed\n");
696 if (memcmp(msg.mData, &hello, 4) != 0) {
697 wsLog("Got bad hello from peer\n");
708 wsLog("hello ack write failed\n");
  /external/wpa_supplicant/
tlsv1_client.c 168 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
186 hello = os_malloc(len);
187 if (hello == NULL)
189 end = hello + len;
191 rhdr = hello;
239 os_free(hello);
245 return hello;
    [all...]

Completed in 2682 milliseconds