Home
last modified time | relevance | path

Searched refs:newid (Results 1 – 5 of 5) sorted by relevance

/third_party/selinux/libselinux/src/
Dlabel_file.c251 int newid; in load_mmap() local
278 newid = find_stem(data, buf, stem_len); in load_mmap()
279 if (newid < 0) { in load_mmap()
280 newid = store_stem(data, buf, stem_len); in load_mmap()
281 if (newid < 0) { in load_mmap()
282 rc = newid; in load_mmap()
285 data->stem_arr[newid].from_mmap = 1; in load_mmap()
287 stem_map[i] = newid; in load_mmap()
/third_party/gstreamer/gstreamer/plugins/elements/
Dgstmultiqueue.c2339 guint32 newid; local
2367 newid = item->posid;
2424 sq->id, newid, sq->last_oldid);
2433 || (sq->last_oldid == G_MAXUINT32) || (newid != (sq->last_oldid + 1))
2446 sq->nextid = newid;
2480 should_wait = newid > mq->highid;
2487 ", high_time %" GST_STIME_FORMAT, sq->id, newid, mq->highid,
2509 sq->id, newid, mq->highid,
2523 should_wait = newid > mq->highid;
2633 sq->last_oldid = newid;
/third_party/littlefs/
Dlfs.c3711 uint16_t newid; local
3712 lfs_stag_t prevtag = lfs_dir_find(lfs, &newcwd, &newpath, &newid);
3714 !(prevtag == LFS_ERR_NOENT && newid != 0x3ff)) {
3734 if (samepair && newid <= newoldid) {
3739 } else if (samepair && newid == newoldid) {
3746 LFS_MKTAG(LFS_TYPE_STRUCT, newid, 8), prevpair);
3782 LFS_TYPE_DELETE, newid, 0), NULL},
3783 {LFS_MKTAG(LFS_TYPE_CREATE, newid, 0), NULL},
3784 {LFS_MKTAG(lfs_tag_type3(oldtag), newid, strlen(newpath)), newpath},
3785 {LFS_MKTAG(LFS_FROM_MOVE, newid, lfs_tag_id(oldtag)), &oldcwd},
/third_party/selinux/checkpolicy/
Dpolicy_define.c117 char *newid = 0; in insert_id() local
120 newid = (char *)malloc(strlen(id) + 1); in insert_id()
121 if (!newid) { in insert_id()
125 strcpy(newid, id); in insert_id()
127 error = queue_push(id_queue, (queue_element_t) newid); in insert_id()
129 error = queue_insert(id_queue, (queue_element_t) newid); in insert_id()
133 free(newid); in insert_id()
/third_party/ltp/testcases/kernel/fs/fsstress/
Dfsstress.c809 void fix_parent(int oldid, int newid) in fix_parent() argument
819 fep->parent = newid; in fix_parent()