/external/netperf/ |
nettest_xti.c | 167 /* should be directed towards "where." family is generally AF_INET, */ 186 fprintf(where,"create_xti_endpoint: attempting to open %s\n", 188 fflush(where); 195 fprintf(where, 200 fflush(where); 205 fprintf(where,"create_xti_endpoint: socket %d obtained...\n",temp_socket); 206 fflush(where); 212 fprintf(where, 215 fflush(where); 220 fprintf(where, [all...] |
nettest_unix.c | 108 -p dir Set the directory where pipes are created\n\ 147 /* should be directed towards "where." family is generally AF_UNIX, */ 162 fprintf(where, 165 fflush(where); 170 fprintf(where,"create_unix_socket: socket %d obtained...\n",temp_socket); 171 fflush(where); 299 fprintf(where,"STREAM STREAM TEST\n"); 301 fprintf(where,cpu_title,format_units()); 303 fprintf(where,tput_title,format_units()); 322 fprintf(where,"send_stream_stream: send_socket obtained...\n") [all...] |
nettest_dlpi.c | 192 fprintf(where,"DLPI CO STREAM TEST\n"); 194 fprintf(where,cpu_title,format_units()); 196 fprintf(where,tput_title,format_units()); 216 fprintf(where,"send_dlpi_co_rr: bind failure\n"); 217 fflush(where); 222 fprintf(where,"send_dlpi_co_stream: send_descriptor obtained...\n"); 228 fprintf(where,"netperf: send_dlpi_co_stream: window send size altered from system default...\n"); 229 fprintf(where," send: %d\n",lsw_size); 234 fprintf(where, 236 fprintf(where," recv: %d\n",lrw_size) [all...] |
netcpu_procstat.c | 61 fprintf(where, 65 fflush(where); 78 fprintf(where, 84 fflush(where); 125 fprintf(where, 131 fflush(where); 155 fprintf(where,"proc_stat_buf '%.*s'\n",proc_stat_buflen,p); 156 fflush(where); 169 fprintf(where,"res[%d] is %llu\n",i,res[i]); 170 fflush(where); [all...] |
netlib.c | 80 /* includes where appropriate. if you have a system that requires */ 246 FILE *where; variable 557 /* on those systems where ntohl is a no-op, we want to return the */ 606 /* on those systems where ntohl is a no-op, we want to return the */ 695 fprintf(where, 699 fprintf(where, 701 fflush(where); 765 fprintf(where,"caught signal %d ",sig); 767 fprintf(where,"while in syscall %d\n", 771 fprintf(where,"null scp\n") [all...] |
netcpu_looper.c | 91 /* zero. on those systems where I do not yet know how to bind a */ 106 fprintf(where, 112 fflush(where); 127 fprintf(where, 133 fflush(where); 140 fprintf(where,"bind_to_processor: unable to perform processor binding\n"); 141 fprintf(where," errno %d\n",errno); 142 fflush(where); 154 fprintf(where, 159 fflush(where); [all...] |
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/ |
BreakIterator.java | 70 public static BreakIterator getCharacterInstance(Locale where) { 71 int iter = NativeBreakIterator.getCharacterInstanceImpl(where.toString()); 80 public static BreakIterator getLineInstance(Locale where) { 81 int iter = NativeBreakIterator.getLineInstanceImpl(where.toString()); 90 public static BreakIterator getSentenceInstance(Locale where) { 91 int iter = NativeBreakIterator.getSentenceInstanceImpl(where.toString()); 100 public static BreakIterator getWordInstance(Locale where) { 101 int iter = NativeBreakIterator.getWordInstanceImpl(where.toString());
|
/external/qemu/slirp/ |
sbuf.h | 17 char *sb_wptr; /* write pointer. points to where the next 19 char *sb_rptr; /* read pointer. points to where the next
|
/external/qemu/slirp-android/ |
sbuf.h | 17 char *sb_wptr; /* write pointer. points to where the next 19 char *sb_rptr; /* read pointer. points to where the next
|
/packages/apps/Browser/src/com/android/browser/ |
EventLogTags.logtags | 7 # Second parameter is where the bookmark was added from, currently history or bookmarks view. 8 70103 browser_bookmark_added (url|3), (where|3)
|
LogTag.java | 27 * @param where the location from where the bookmark was added 29 public static void logBookmarkAdded(String url, String where) { 31 + where);
|
/dalvik/dx/tests/073-dex-null-array-refs/ |
info.txt | 2 a bunch of cases convert reasonably, where necessarily or possibly
|
/dalvik/libnativehelper/ |
README | 9 - SHOULD be written in C rather than C++ where possible.
|
/external/kernel-headers/original/asm-x86/ |
ia32_unistd.h | 7 * Only add syscalls here where some part of the kernel needs to know
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
__init__.py | 5 # List our third-party library dependencies here and where they can be
|
/frameworks/base/core/java/android/text/style/ |
TabStopSpan.java | 41 * @param where the offset of the tab stop from the leading margin of 44 public Standard(int where) { 45 mTab = where;
|
/external/grub/netboot/ |
pci.c | 34 #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (bus << 16) | (device_fn << 8) | (where & ~3)) 37 unsigned int where, unsigned char *value) 39 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); 40 *value = inb(0xCFC + (where&3)); 45 unsigned int device_fn, unsigned int where, unsigned short *value) 47 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); 48 *value = inw(0xCFC + (where&2)); 53 unsigned int where, unsigned int *value) 55 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8) [all...] |
/packages/providers/ContactsProvider/tests/assets/testUnsynced/ |
legacy_contacts.sql | 90 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END; 93 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END; 95 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END [all...] |
/dalvik/libcore/sql/src/test/java/tests/java/sql/ |
UpdateFunctionalityTest2.java | 138 + " SET id = 4 WHERE id = 3"); 158 + " SET id = 5 WHERE id = 1;"); 179 + " WHERE name_id = 1;"); 181 + " SET id = 5 WHERE id = 1;"); 201 + " SET name_id = 6 WHERE name_id = 2"); 230 + " SET id = 5 WHERE id = 1;"); 233 + DatabaseCreator.FKCASCADE_TABLE + " WHERE name_id = 1;"); 237 + DatabaseCreator.FKCASCADE_TABLE + " WHERE name_id = 5;"); 262 + " SET name_id = 6 WHERE name_id = 2"); 271 * subquery in WHERE claus [all...] |
/external/webkit/WebKit/mac/Plugins/ |
WebNetscapePluginEventHandlerCarbon.mm | 51 GetGlobalMouse(&carbonEvent->where); 52 carbonEvent->where.h = static_cast<short>(carbonEvent->where.h * HIGetScaleFactor()); 53 carbonEvent->where.v = static_cast<short>(carbonEvent->where.v * HIGetScaleFactor()); 91 carbonEvent->where.h = static_cast<short>(carbonEvent->where.h * HIGetScaleFactor()); 92 carbonEvent->where.v = static_cast<short>(carbonEvent->where.v * HIGetScaleFactor()); 96 NSPoint where = [[cocoaEvent window] convertBaseToScreen:[cocoaEvent locationInWindow]] [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
AgendaAdapter.java | 46 TextView where; field in class:AgendaAdapter.ViewHolder 75 holder.where = (TextView) view.findViewById(R.id.where); 88 TextView where = holder.where; local 148 // Where 151 where.setVisibility(View.VISIBLE); 152 where.setText(whereString); 154 where.setVisibility(View.GONE); 162 String where = String.format(REMINDERS_WHERE, eventId) [all...] |
/cts/tests/src/android/app/cts/ |
ActivityTestsBase.java | 85 public void activityFinished(int resultCode, Intent data, RuntimeException where) { 86 finishWithResult(resultCode, data, where); 112 final RuntimeException where = new RuntimeException("Original error was here"); local 113 where.fillInStackTrace(); 114 finishWithResult(resultCode, data, where); 117 public void finishWithResult(int resultCode, Intent data, RuntimeException where) { 121 mResultStack = where;
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
ActivityTestsBase.java | 87 public void activityFinished(int resultCode, Intent data, RuntimeException where) { 88 finishWithResult(resultCode, data, where); 113 RuntimeException where = new RuntimeException("Original error was here"); local 114 where.fillInStackTrace(); 115 finishWithResult(resultCode, data, where); 118 public void finishWithResult(int resultCode, Intent data, RuntimeException where) { 123 mResultStack = where;
|
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabasePerformanceTests.java | 267 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf3Test 286 where[i] = "b >= " + lower + " AND b < " + upper; 294 .query("t1", COLUMNS, where[i], null, null, null, null); 307 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf4Test 324 where[i] = "c LIKE '" + numberName(i) + "'"; 332 .query("t1", COLUMNS, where[i], null, null, null, null); 345 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf5Test 365 where[i] = "b >= " + lower + " AND b < " + upper; 373 .query("t1", COLUMNS, where[i], null, null, null, null); 504 private String[] where = new String[SIZE] field in class:DatabasePerformanceTests.Perf9Test 556 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf10Test 595 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf11Test 629 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf12Test 728 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf15Test 833 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf18Test 870 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf19Test 908 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf20Test 952 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf21Test 1126 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf26Test 1164 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf27Test 1203 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf28Test 1237 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf29Test 1275 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf30Test 1312 private String[] where = new String[SIZE]; field in class:DatabasePerformanceTests.Perf31Test [all...] |
NewDatabasePerformanceTests.java | 176 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.Select100 195 where[i] = "b >= " + lower + " AND b < " + upper; 202 .query("t1", COLUMNS, where[i], null, null, null, null); 215 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectStringComparison100 232 where[i] = "c LIKE '" + numberName(i) + "'"; 239 .query("t1", COLUMNS, where[i], null, null, null, null); 252 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectIndex100 272 where[i] = "b >= " + lower + " AND b < " + upper; 279 .query("t1", COLUMNS, where[i], null, null, null, null); 407 private String[] where = new String[SIZE] field in class:NewDatabasePerformanceTests.SelectSubQIndex100 458 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectIndexStringComparison100 496 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectInteger100 529 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectString100 625 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectStringStartsWith100 727 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.DeleteWhere1000 763 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.DeleteIndexWhere1000 800 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.UpdateIndexWhere1000 843 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.UpdateWhere1000 1012 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectStringStartsWith10000 1050 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectStringIndexedStartsWith10000 1088 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectInteger10000 1121 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectIntegerIndexed10000 1158 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectStringContains10000 1195 private String[] where = new String[SIZE]; field in class:NewDatabasePerformanceTests.SelectStringIndexedContains10000 [all...] |