Searched defs:commit (Results 1 - 25 of 98) sorted by relevance

1234

/external/jemalloc/test/unit/
H A Dpages.c5 bool commit; local
8 commit = true;
9 pages = pages_map(NULL, PAGE, &commit);
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DSymbolStream.cpp46 Error SymbolStream::commit() { return Error::success(); } function in class:SymbolStream
H A DInfoStream.cpp78 Error InfoStream::commit() { function in class:InfoStream
89 return NamedStreams.commit(Writer);
H A DModStream.cpp82 Error ModStream::commit() { return Error::success(); } function in class:ModStream
H A DNameMap.cpp148 Error NameMap::commit(codeview::StreamWriter &Writer) { function in class:NameMap
/external/selinux/libselinux/utils/
H A Dtogglesebool.c26 int rc, i, commit = 0; local
46 commit++;
56 commit++;
75 if (commit > 0) {
/external/iproute2/include/libiptc/
H A Dxtcshared.h9 int (*commit)(struct xtc_handle *); member in struct:xtc_ops
/external/iptables/include/libiptc/
H A Dxtcshared.h9 int (*commit)(struct xtc_handle *); member in struct:xtc_ops
/external/jemalloc/include/jemalloc/
H A Djemalloc_typedefs.h4 * bool *commit, unsigned arena_ind);
52 chunk_commit_t *commit; member in struct:__anon9146
/external/jemalloc/src/
H A Dchunk_mmap.c7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) argument
19 pages = pages_map(NULL, alloc_size, commit);
24 ret = pages_trim(pages, alloc_size, leadsize, size, commit);
34 bool *commit)
55 ret = pages_map(new_addr, size, commit);
62 return (chunk_alloc_mmap_slow(size, alignment, zero, commit));
33 chunk_alloc_mmap(void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit) argument
H A Dchunk_dss.c98 size_t alignment, bool *zero, bool *commit)
173 if (!*commit)
174 *commit = pages_decommit(ret, size);
97 chunk_alloc_dss(tsdn_t *tsdn, arena_t *arena, void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit) argument
H A Dpages.c32 pages_map(void *addr, size_t size, bool *commit) argument
39 *commit = true;
46 ret = VirtualAlloc(addr, size, MEM_RESERVE | (*commit ? MEM_COMMIT : 0),
54 int prot = *commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT;
109 bool *commit)
119 new_addr = pages_map(ret, size, commit);
140 pages_commit_impl(void *addr, size_t size, bool commit) argument
147 return (commit ? (addr != VirtualAlloc(addr, size, MEM_COMMIT,
151 int prot = commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT;
108 pages_trim(void *addr, size_t alloc_size, size_t leadsize, size_t size, bool *commit) argument
/external/llvm/lib/DebugInfo/CodeView/
H A DByteStream.cpp65 template <bool Writable> Error ByteStream<Writable>::commit() const { function in class:ByteStream
/external/testng/src/test/java/test/justin/
H A DBaseTestCase.java24 protected void commit() { method in class:BaseTestCase
28 commit();
/external/v8/tools/
H A Dfind-commit-for-patch.py13 description="Finds a commit that a given patch can be applied to. "
54 def CountMatchingFiles(commit, files):
58 cmd = ["git", "ls-tree", "-r", commit] + [f for f in files]
69 commit = GetGitCommitHash(start)
73 matched_files = CountMatchingFiles(commit, files)
74 if verbose: print("Commit %s matched %d files" % (commit, matched_files))
76 return commit
77 commit = GetGitCommitHash("%s^" % commit)
78 print("Sorry, no matching commit foun
87 commit = FindFirstMatchingCommit(args.branch, files, args.limit, args.verbose) variable
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DStreamRef.h65 Error commit() const { return Stream->commit(); } function in class:llvm::codeview::StreamRef
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp104 std::error_code FileOutputBuffer::commit() { function in class:llvm::FileOutputBuffer
/external/selinux/libsemanage/src/
H A Dpolicy.h33 /* Returns the current policy serial/commit number
47 int (*commit) (struct semanage_handle *); member in struct:semanage_policy_table
/external/autotest/client/common_lib/
H A Drevision_control.py38 """Exception raised for git commit errors."""
208 def commit(self, msg='default'): member in class:GitRepo
210 Commit changes to repo with the supplied commit msg.
212 @param msg: A message that goes with the commit.
214 rv = self.gitcmd('commit -a -m %s' % msg)
217 raise GitCommitError('Unable to commit', rv)
334 Get the top commit hash of the current local git branch.
336 @return: Top commit hash of local git branch
345 Get the top commit hash of the current remote git branch.
347 @return: Top commit has
[all...]
H A Drevision_control_unittest.py36 # Create an initial commit. We really care about the common case
37 # where there exists a commit in the upstream repo.
40 self.commit('initial_commit')
98 def commit(self, msg='default'): member in class:GitRepoManager
100 Commit changes to repo with the supplied commit msg.
101 Also updates commit_hash with the hash for this commit.
103 @param msg: A message that goes with the commit.
105 self.git_repo_manager.commit(msg)
146 Test add, commit, pull, clone.
150 self.master_repo.commit()
[all...]
/external/autotest/server/hosts/
H A Dhost_info.py25 store.commit(host_info)
232 def commit(self, info): member in class:CachingHostInfoStore
237 |get_uncached| methods, update it as needed and then commit.
261 """Actual implementation to commit host_info to the store.
328 @param info: The HostInfo object to commit.
/external/autotest/tko/
H A Ddb.py194 """Private method for function commit to call for retry.
196 return self.con.commit()
199 def commit(self): member in class:db_sql
334 def _exec_sql_with_commit(self, sql, values, commit):
339 self.con.commit()
344 if commit:
345 self.con.commit()
348 def insert(self, table, data, commit=None):
357 @param commit: If commit th
[all...]
/external/clang/lib/Edit/
H A DEditedSource.cpp76 // written by a previous commit for another expansion of the same macro
84 // A commit modified the macro argument 'a' due to the first '(x)'
85 // expansion inside the macro definition, and a subsequent commit tried
87 // second commit will be rejected.
260 bool EditedSource::commit(const Commit &commit) { argument
261 if (!commit.isCommitable())
275 I = commit.edit_begin(), E = commit.edit_end(); I != E; ++I) {
/external/fio/
H A Dioengines.h17 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
29 int (*commit)(struct thread_data *); member in struct:ioengine_ops
/external/guice/extensions/persist/lib/
H A Djta.jar ... Transaction extends java.lang.Object { public abstract void commit () throws javax.transaction.RollbackException javax.transaction. ...

Completed in 516 milliseconds

1234