Searched refs:name (Results 1 - 25 of 182) sorted by path

12345678

/system/bluetooth/bluez-clean-headers/bluetooth/
H A Dhci.h5 *** of the same name, to make information necessary for userspace to
657 char name[8]; member in struct:hci_dev_info
/system/bluetooth/brcm_patchram_plus/
H A Dbrcm_patchram_plus.c275 printf ("option %s", long_options[option_index].name);
/system/bluetooth/data/
H A Dauto_pairing.conf18 // Blacklisting by Partial Name (if name starts with)
H A Dblacklist.conf6 scoSocket:name,"MY-CAR",=ALL_ESCO_MASK;-ESCO_2EV5;-ESCO_3EV3;-ESCO_3EV5, // Infinity G35
7 scoSocket:name,"Motorola HF850",=SCO_ESCO_MASK, // Motorola HF850
/system/bluetooth/tools/
H A Dasocket_test.c672 char *name; member in struct:__anon5
690 char *name; member in struct:__anon6
706 for (i = 0; type_table[i].name; i++) {
707 printf("\t%s\n", type_table[i].name);
710 for (i = 0; action_table[i].name; i++) {
711 printf("\t%s\n", action_table[i].name);
723 for (i = 0; type_table[i].name; i++) {
724 if (!strcmp(argv[1], type_table[i].name)) {
733 for (i = 0; action_table[i].name; i++) {
734 if (!strcmp(argv[2], action_table[i].name)) {
[all...]
H A Dbttest.c49 char *name; member in struct:__anon7
62 for (i = 0; function_table[i].name; i++) {
63 printf("\tbttest %s\n", function_table[i].name);
74 for (i = 0; function_table[i].name; i++) {
75 if (!strcmp(argv[1], function_table[i].name)) {
76 printf("%s\n", function_table[i].name);
H A Dpipetest.c387 char *name; member in struct:__anon8
409 for (i = 0; function_table[i].name; i++) {
410 printf("\tpipetest %s\n", function_table[i].name);
421 for (i = 0; function_table[i].name; i++) {
422 if (!strcmp(argv[1], function_table[i].name)) {
423 printf("%s\n", function_table[i].name);
H A Dsock_shutdown_test.c254 char *name; member in struct:__anon9
262 char *name; member in struct:__anon10
278 for (i = 0; type_table[i].name; i++) {
279 printf("\t%s\n", type_table[i].name);
282 for (i = 0; action_table[i].name; i++) {
283 printf("\t%s\n", action_table[i].name);
295 for (i = 0; type_table[i].name; i++) {
296 if (!strcmp(argv[1], type_table[i].name)) {
305 for (i = 0; action_table[i].name; i++) {
306 if (!strcmp(argv[2], action_table[i].name)) {
[all...]
H A Dsocktest.c744 char *name; member in struct:__anon11
764 char *name; member in struct:__anon12
780 for (i = 0; type_table[i].name; i++) {
781 printf("\t%s\n", type_table[i].name);
784 for (i = 0; action_table[i].name; i++) {
785 printf("\t%s\n", action_table[i].name);
797 for (i = 0; type_table[i].name; i++) {
798 if (!strcmp(argv[1], type_table[i].name)) {
807 for (i = 0; action_table[i].name; i++) {
808 if (!strcmp(argv[2], action_table[i].name)) {
[all...]
/system/core/adb/
H A Dadb.c275 /* save product name in device structure */
340 char *name = (char*) p->data; local
341 name[p->msg.data_length > 0 ? p->msg.data_length - 1 : 0] = 0;
342 s = create_local_service_socket(name);
481 int local_name_to_fd(const char *name) argument
485 if(!strncmp("tcp:", name, 4)){
487 port = atoi(name + 4);
493 if(!strncmp(name, "local:", 6)) {
494 return socket_local_server(name + 6,
496 } else if(!strncmp(name, "localabstrac
[all...]
H A Dadb.h284 int service_to_fd(const char *name);
286 asocket *host_service_to_socket(const char* name, const char *serial);
H A Dfile_sync_client.c75 typedef void (*sync_ls_cb)(unsigned mode, unsigned size, unsigned time, const char *name, void *cookie);
422 static int mkdirs(char *name) argument
425 char *x = name + 1;
431 ret = adb_mkdir(name, 0775);
536 const char *name, void *cookie)
538 printf("%08x %08x %08x %s\n", mode, size, time, name);
572 const char *name, int isdir)
576 int nlen = strlen(name);
593 snprintf((char*) ci->src, ssize, isdir ? "%s%s/" : "%s%s", spath, name);
594 snprintf((char*) ci->dst, dsize, isdir ? "%s%s/" : "%s%s", dpath, name);
535 do_sync_ls_cb(unsigned mode, unsigned size, unsigned time, const char *name, void *cookie) argument
571 mkcopyinfo(const char *spath, const char *dpath, const char *name, int isdir) argument
620 char *name = de->d_name; local
774 const char *name = adb_dirstop(lpath); local
808 sync_ls_build_list_cb(unsigned mode, unsigned size, unsigned time, const char *name, void *cookie) argument
968 const char *name = adb_dirstop(rpath); local
[all...]
H A Dfile_sync_service.c34 static int mkdirs(char *name) argument
37 char *x = name + 1;
39 if(name[0] != '/') return -1;
45 ret = adb_mkdir(name, 0775);
47 D("mkdir(\"%s\") -> %s\n", name, strerror(errno));
360 char name[1025]; local
378 if(readx(fd, name, namelen)) {
382 name[namelen] = 0;
385 D("sync: '%s' '%s'\n", (char*) &msg.req, name);
389 if(do_stat(fd, name)) got
[all...]
H A Dservices.c342 int service_to_fd(const char *name) argument
346 if(!strncmp(name, "tcp:", 4)) {
347 int port = atoi(name + 4);
348 name = strchr(name + 4, ':');
349 if(name == 0) {
356 ret = socket_network_client(name + 1, port, SOCK_STREAM);
363 } else if(!strncmp(name, "local:", 6)) {
364 ret = socket_local_client(name + 6,
366 } else if(!strncmp(name, "localreserve
460 host_service_to_socket(const char* name, const char *serial) argument
[all...]
H A Dsockets.c383 asocket *create_local_service_socket(const char *name) argument
389 if (!strcmp(name,"jdwp")) {
392 if (!strcmp(name,"track-jdwp")) {
396 fd = service_to_fd(name);
400 D("LS(%d): bound to '%s'\n", s->id, name);
405 static asocket *create_host_service_socket(const char *name, const char* serial) argument
409 s = host_service_to_socket(name, serial);
412 D("LS(%d) bound to '%s'\n", s->id, name);
663 /* try to find a local service with this name.
H A Dsysdeps_win32.c107 char name[32]; member in struct:FHRec_
233 D( "adb_read: could not read %d bytes from %s\n", len, f->name );
248 D( "adb_file_write: could not write %d bytes from %s\n", len, f->name );
356 snprintf( f->name, sizeof(f->name), "%d(%s)", _fh_to_int(f), path );
396 snprintf( f->name, sizeof(f->name), "%d(%s)", _fh_to_int(f), path );
446 D( "adb_shutdown: %s\n", f->name);
460 D( "adb_close: %s\n", f->name);
609 snprintf( f->name, sizeo
[all...]
H A Dusb_linux.c122 static inline int badname(const char *name) argument
124 while(*name) {
125 if(!isdigit(*name++)) return 1;
549 ** name, we have no further work to do.
/system/core/debuggerd/
H A Ddebuggerd.c114 strcpy(mi->name, line + 49);
H A Dgetevent.c25 char name[80]; local
41 name[sizeof(name) - 1] = '\0';
44 if(ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
45 //fprintf(stderr, "could not get device name for %s, %s\n", device, strerror(errno));
46 name[0] = '\0';
118 //printf("%d: %08x \"%s\"\n", event->wd, event->mask, event->len ? event->name : "");
120 strcpy(filename, event->name);
H A Dunwind-arm.c383 /* Print out the current call level, pc, and module name in the crash log */
456 mi ? mi->name : "");
515 saved_vrs.core.r[R_PC] - this_map->start, this_map->name);
H A Dutility.c57 /* Map a pc address to the name of the containing ELF file */
62 return mi->name;
75 if (strstr(mi->name, ".so")) {
H A Dutility.h36 char name[]; member in struct:mapinfo
50 /* Map a pc address to the name of the containing ELF file */
/system/core/fastboot/
H A Dengine.c260 void fb_queue_download(const char *name, void *data, unsigned size) argument
265 a->msg = mkmsg("downloading '%s'", name);
H A Dfastboot.c230 " -p <product> specify product name\n"
292 void *unzip_file(zipfile_t zip, const char *name, unsigned *sz) argument
298 entry = lookup_zipentry(zip, name);
300 fprintf(stderr, "archive does not contain '%s'\n", name);
315 fprintf(stderr, "failed to unzip '%s' from archive\n", name);
336 static int setup_requirement_line(char *name) argument
344 if (!strncmp(name, "reject ", 7)) {
345 name += 7;
347 } else if (!strncmp(name, "require ", 8)) {
348 name
[all...]
H A Dfastboot.h50 void fb_queue_download(const char *name, void *data, unsigned size);

Completed in 115 milliseconds

12345678