| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | memory_buffer_alloc.c | 201 memory_header *new, *cur = heap.first_free; in buffer_alloc_calloc() local 297 new = (memory_header *) p; in buffer_alloc_calloc() 299 new->size = cur->size - len - sizeof(memory_header); in buffer_alloc_calloc() 300 new->alloc = 0; in buffer_alloc_calloc() 301 new->prev = cur; in buffer_alloc_calloc() 302 new->next = cur->next; in buffer_alloc_calloc() 304 new->trace = NULL; in buffer_alloc_calloc() 305 new->trace_count = 0; in buffer_alloc_calloc() 307 new->magic1 = MAGIC1; in buffer_alloc_calloc() 308 new->magic2 = MAGIC2; in buffer_alloc_calloc() [all …]
|
| /optee_os/core/lib/libfdt/ |
| H A D | fdt_rw.c | 119 char *new; in fdt_find_add_string_() local 130 new = strtab + fdt_size_dt_strings(fdt); in fdt_find_add_string_() 137 memcpy(new, s, len); in fdt_find_add_string_() 138 return (new - strtab); in fdt_find_add_string_() 378 static void fdt_packblocks_(const char *old, char *new, in fdt_packblocks_() argument 387 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size); in fdt_packblocks_() 388 fdt_set_off_mem_rsvmap(new, mem_rsv_off); in fdt_packblocks_() 390 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size); in fdt_packblocks_() 391 fdt_set_off_dt_struct(new, struct_off); in fdt_packblocks_() 392 fdt_set_size_dt_struct(new, struct_size); in fdt_packblocks_() [all …]
|
| /optee_os/scripts/ |
| H A D | sign_rproc_fw.py | 170 self._hasher = SHA256.new() 171 self.signer = pkcs1_15.new(key) 183 self._hasher = SHA256.new() 184 self.signer = DSS.new(key, 'fips-186-3') 220 h = SHA256.new() 229 h = SHA256.new()
|
| H A D | symbolize.py | 556 new = termios.tcgetattr(fd) 557 new[3] = new[3] & ~termios.ECHO # lflags 560 termios.tcsetattr(fd, termios.TCSADRAIN, new)
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | CONTRIBUTING.md | 35 …main development branch where new features are added, need to be justifiable by either being a sig… 37 …different prototype, or different documented behavior), create a new function with a new name with… 48 … to that LTS branch. If a bug fix introduces a change to the API such as a new function, the fix s… 49 1. If a contribution is a new feature or enhancement, no backporting is required. Exceptions to thi… 91 All new files should include the standard SPDX license identifier where possible, i.e. "SPDX-Licens… 93 …utions is retained by the original authors of the code. Where possible for new files, this should …
|
| H A D | ChangeLog | 123 enable the new compile-time option 127 * Added new configuration option MBEDTLS_PSA_STATIC_KEY_SLOTS, which 227 need to enable the handling of TLS 1.3 tickets through the new 277 * When the new compilation option MBEDTLS_PSA_KEY_STORE_DYNAMIC is enabled, 314 non-existent key while concurrently creating a new key could potentially 433 * Add new mbedtls_x509_csr_parse_der_with_ext_cb() routine which allows 435 * Enable the new option MBEDTLS_BLOCK_CIPHER_NO_DECRYPT to omit 481 * The new function mbedtls_rsa_get_bitlen() returns the length of the modulus 487 * The new functions mbedtls_pk_get_psa_attributes() and 495 * The new function psa_generate_key_ext() allows generating an RSA [all …]
|
| H A D | LICENSE | 240 in new free programs; and that you know you can do these things. 451 9. The Free Software Foundation may publish revised and/or new versions 452 of the General Public License from time to time. Such new versions will 454 address new problems or concerns. 498 If you develop a new program, and you want it to be of the greatest
|
| H A D | README.md | 260 …[Porting Mbed TLS to a new environment or OS](https://mbed-tls.readthedocs.io/en/latest/kb/how-to/… 332 … Mbed TLS, please [file an issue on GitHub](https://github.com/Mbed-TLS/mbedtls/issues/new/choose).
|
| /optee_os/core/tee/ |
| H A D | tee_ree_fs.c | 902 static TEE_Result ree_fs_rename(struct tee_pobj *old, struct tee_pobj *new, in ree_fs_rename() argument 910 if (!new) in ree_fs_rename() 918 res = tee_fs_dirfile_find(dirh, &new->uuid, new->obj_id, in ree_fs_rename() 919 new->obj_id_len, &remove_dfh); in ree_fs_rename() 930 res = tee_fs_dirfile_rename(dirh, &new->uuid, &dfh, new->obj_id, in ree_fs_rename() 931 new->obj_id_len); in ree_fs_rename()
|
| H A D | tee_rpmb_fs.c | 2699 struct tee_pobj *new, in rpmb_fs_rename_internal() argument 2711 if (new) in rpmb_fs_rename_internal() 2720 if (new) in rpmb_fs_rename_internal() 2721 fh_new = alloc_file_handle(new, new->temporary); in rpmb_fs_rename_internal() 2760 static TEE_Result rpmb_fs_rename(struct tee_pobj *old, struct tee_pobj *new, in rpmb_fs_rename() argument 2766 res = rpmb_fs_rename_internal(old, new, overwrite); in rpmb_fs_rename()
|
| /optee_os/core/kernel/ |
| H A D | dt.c | 584 struct cached_node *new = NULL; in realloc_cached_node_array() local 589 new = realloc(dt_node_cache->array, in realloc_cached_node_array() 591 if (!new) in realloc_cached_node_array() 594 dt_node_cache->array = new; in realloc_cached_node_array()
|
| /optee_os/core/drivers/crypto/caam/utils/ |
| H A D | utils_dmaobj.c | 257 struct caambuf *new) in dmalist_insert_before_entry() argument 264 memcpy(&entry->origbuf, new, sizeof(entry->origbuf)); in dmalist_insert_before_entry() 266 new->length); in dmalist_insert_before_entry() 286 struct caambuf *new) in dmalist_insert_after_entry() argument 293 memcpy(&entry->origbuf, new, sizeof(entry->origbuf)); in dmalist_insert_after_entry() 295 new->length); in dmalist_insert_after_entry()
|
| /optee_os/lib/libutils/isoc/ |
| H A D | bget.doc | 148 a pointer to the new block and BGET expands the buffer pool; if it 236 allocating the requested space and returns a pointer to the new area,
|
| /optee_os/ |
| H A D | CHANGELOG.md | 835 * tzc380: implement new functions ([#1994]) 1062 * Add new image format: split image into three separate binaries suitable for 1186 commits [a238b74][commit_a238b74] ("core: REE FS: use the new hash tree 1187 interface") and [44e900e][commit_44e900e] ("core: SQL FS: use the new hash tree 1612 * Generic driver: A new generic TEE driver is in the process of being 1807 new board support. It is applied on plat-hikey, plat-vexpress, plat-mediatek, plat-stm 1846 ### Misc new features
|
| /optee_os/core/lib/qcbor/ |
| H A D | README.md | 65 **Comprehensive test suite** – Easy to verify on a new platform or OS
|