/device/google/wahoo/ |
D | init.recovery.hardware.rc | 10 mkdir /config/usb_gadget/g1/strings/0x409 0770 11 write /config/usb_gadget/g1/strings/0x409/serialnumber ${ro.serialno} 12 write /config/usb_gadget/g1/strings/0x409/manufacturer ${ro.product.manufacturer} 13 write /config/usb_gadget/g1/strings/0x409/product ${ro.product.model} 21 mkdir /config/usb_gadget/g1/configs/b.1/strings/0x409 0770 shell shell 22 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "adb"
|
D | init.hardware.diag.rc.userdebug | 29 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "diag" 46 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "diag_adb" 64 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "Default composition" 81 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "Default comp without ADB" 98 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "rndis_diag" 115 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "rndis_diag_adb" 130 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "rndis_dun_diag" 150 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "rndis_dun_diag" 166 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "mtp_diag" 183 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "mtp_diag_adb" [all …]
|
D | init.hardware.usb.rc | 20 mkdir /config/usb_gadget/g1/strings/0x409 0770 shell shell 24 write /config/usb_gadget/g1/strings/0x409/serialnumber ${ro.serialno} 25 write /config/usb_gadget/g1/strings/0x409/manufacturer ${ro.product.manufacturer} 26 write /config/usb_gadget/g1/strings/0x409/product ${ro.product.model} 40 mkdir /config/usb_gadget/g1/configs/b.1/strings/0x409 0770 shell shell
|
/device/google/dragon/ |
D | init.recovery.dragon.rc | 8 mkdir /config/usb_gadget/g1/strings/0x409 0770 9 write /config/usb_gadget/g1/strings/0x409/serialnumber ${ro.serialno} 10 write /config/usb_gadget/g1/strings/0x409/manufacturer ${ro.product.manufacturer} 11 write /config/usb_gadget/g1/strings/0x409/product ${ro.product.model} 23 mkdir /config/usb_gadget/g1/configs/b.1/strings/0x409 0770 shell shell 24 write /config/usb_gadget/g1/configs/b.1/strings/0x409/configuration "ffs1"
|
D | init.dragon.usb.rc | 9 mkdir /config/usb_gadget/g1/strings/0x409 0770 10 write /config/usb_gadget/g1/strings/0x409/serialnumber ${ro.serialno} 11 write /config/usb_gadget/g1/strings/0x409/manufacturer ${ro.product.manufacturer} 12 write /config/usb_gadget/g1/strings/0x409/product ${ro.product.model} 22 mkdir /config/usb_gadget/g1/configs/b.1/strings/0x409 0770 shell shell
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | hash.c | 63 static char *strings = NULL; variable 79 if ( strings == NULL ) in newHashTable() 81 strings = (char *) calloc(strsize, sizeof(char)); in newHashTable() 82 require( strings != NULL, "cannot allocate string table"); in newHashTable() 83 strp = strings; in newHashTable() 214 require( strp <= &(strings[strsize-2]),
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/ |
D | sym.c | 124 static char *strings; variable 142 strings = (char *) calloc(strs, sizeof(char)); 143 if ( strings == NULL ) 150 strp = strings; 160 if ( strings != NULL ) free( strings ); in zzs_done() 392 if ( strp >= &(strings[strsize-2]) )
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
D | marshal.c | 72 PyObject *strings; /* dict on marshal, list on unmarshal */ member 308 if (p->strings && PyString_CHECK_INTERNED(v)) { in w_object() 309 PyObject *o = PyDict_GetItem(p->strings, v); in w_object() 318 o = PyInt_FromSsize_t(PyDict_Size(p->strings)); in w_object() 320 PyDict_SetItem(p->strings, v, o) >= 0; in w_object() 471 wf.strings = NULL; in PyMarshal_WriteLongToFile() 483 wf.strings = (version > 0) ? PyDict_New() : NULL; in PyMarshal_WriteObjectToFile() 486 Py_XDECREF(wf.strings); in PyMarshal_WriteObjectToFile() 829 if (PyList_Append(p->strings, v) < 0) { in r_object() 839 if (n < 0 || n >= PyList_GET_SIZE(p->strings)) { in r_object() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/ |
D | marshal.c | 71 PyObject *strings; /* dict on marshal, list on unmarshal */ member 334 if (p->strings && PyString_CHECK_INTERNED(v)) { in w_object() 335 PyObject *o = PyDict_GetItem(p->strings, v); in w_object() 344 o = PyInt_FromSsize_t(PyDict_Size(p->strings)); in w_object() 346 PyDict_SetItem(p->strings, v, o) >= 0; in w_object() 476 wf.strings = NULL; in PyMarshal_WriteLongToFile() 488 wf.strings = (version > 0) ? PyDict_New() : NULL; in PyMarshal_WriteObjectToFile() 491 Py_XDECREF(wf.strings); in PyMarshal_WriteObjectToFile() 834 if (PyList_Append(p->strings, v) < 0) { in r_object() 844 if (n < 0 || n >= PyList_GET_SIZE(p->strings)) { in r_object() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | marshal.c | 72 PyObject *strings; /* dict on marshal, list on unmarshal */ member 308 if (p->strings && PyString_CHECK_INTERNED(v)) { in w_object() 309 PyObject *o = PyDict_GetItem(p->strings, v); in w_object() 318 o = PyInt_FromSsize_t(PyDict_Size(p->strings)); in w_object() 320 PyDict_SetItem(p->strings, v, o) >= 0; in w_object() 471 wf.strings = NULL; in PyMarshal_WriteLongToFile() 483 wf.strings = (version > 0) ? PyDict_New() : NULL; in PyMarshal_WriteObjectToFile() 486 Py_XDECREF(wf.strings); in PyMarshal_WriteObjectToFile() 829 if (PyList_Append(p->strings, v) < 0) { in r_object() 839 if (n < 0 || n >= PyList_GET_SIZE(p->strings)) { in r_object() [all …]
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
D | glUtils.cpp | 516 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count) in glUtilsPackStrings() argument 522 if (strings[i]!=NULL) { in glUtilsPackStrings() 524 l = strlen(strings[i]); in glUtilsPackStrings() 525 strcat(p, strings[i]); in glUtilsPackStrings() 528 strncat(p, strings[i], l); in glUtilsPackStrings() 536 int glUtilsCalcShaderSourceLen( char **strings, GLint *length, GLsizei count) in glUtilsCalcShaderSourceLen() argument 542 l = strings[i]!=NULL ? strlen(strings[i]) : 0; in glUtilsCalcShaderSourceLen()
|
D | glUtils.h | 63 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count); 64 int glUtilsCalcShaderSourceLen(char **strings, GLint *length, GLsizei count);
|
/device/linaro/hikey/ |
D | init.common.usb.rc | 9 mkdir /config/usb_gadget/g1/strings/0x409 0770 10 write /config/usb_gadget/g1/strings/0x409/serialnumber ${ro.serialno} 11 write /config/usb_gadget/g1/strings/0x409/manufacturer "HISILICON" 12 write /config/usb_gadget/g1/strings/0x409/product "ADB Gadget" 20 mkdir /config/usb_gadget/g1/configs/b.1/strings/0x409 0770 shell shell
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseDebugLibSerialPort/ |
D | BaseDebugLibSerialPort.uni | 4 // It uses Print Library to produce formatted output strings to seiral port device. 20 … #language en-US "It uses Print Library to produce formatted output strings to a serial port …
|
D | BaseDebugLibSerialPort.inf | 3 # It uses Print Library to produce formatted output strings to seiral port device.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/ |
D | EnglishDxe.uni | 8 // comparison functions on Unicode strings for English languages. 25 … services environment to perform lexical comparison functions on Unicode strings for English langu…
|
D | EnglishDxe.inf | 8 # comparison functions on Unicode strings for English languages.
|
/device/generic/goldfish/camera/ |
D | CallbackNotifier.cpp | 61 static int GetMessageStrings(uint32_t msg, const char** strings, int max) in GetMessageStrings() argument 71 strings[out] = lCameraMessages[index]; in GetMessageStrings()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | cleanfuture.py | 51 strings = map(str, args) 52 msg = ' '.join(strings)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | algorithm.txt | 4 LZ77 (Lempel-Ziv 1977, see reference below). It finds duplicated strings in 21 Duplicated strings are found using a hash table. All input strings of 24 strings in the chain are compared with the current input string, and 27 The hash chains are searched starting with the most recent strings, to 52 modes (level parameter 1 to 3). For these fast modes, new strings
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | algorithm.txt | 4 LZ77 (Lempel-Ziv 1977, see reference below). It finds duplicated strings in 21 Duplicated strings are found using a hash table. All input strings of 24 strings in the chain are compared with the current input string, and 27 The hash chains are searched starting with the most recent strings, to 52 modes (level parameter 1 to 3). For these fast modes, new strings
|
/device/linaro/bootloader/edk2/OvmfPkg/Library/PlatformDebugLibIoPort/ |
D | PlatformDebugLibIoPort.inf | 3 # It uses Print Library to produce formatted output strings.
|
/device/linaro/bootloader/edk2/CorebootModulePkg/Include/ |
D | Coreboot.h | 139 UINT8 strings[0]; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | optparse.py | 329 strings = self.format_option_strings(opt) 330 self.option_strings[opt] = strings 331 max_len = max(max_len, len(strings) + self.current_indent) 335 strings = self.format_option_strings(opt) 336 self.option_strings[opt] = strings 337 max_len = max(max_len, len(strings) + self.current_indent)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | optparse.py | 328 strings = self.format_option_strings(opt) 329 self.option_strings[opt] = strings 330 max_len = max(max_len, len(strings) + self.current_indent) 334 strings = self.format_option_strings(opt) 335 self.option_strings[opt] = strings 336 max_len = max(max_len, len(strings) + self.current_indent)
|