/external/libvpx/libvpx/tools/ |
H A D | ftfy.sh | 9 This script applies a whitespace transformation to the commit at HEAD. If no 15 --amend Squashes the changes into the commit at HEAD 16 This option will also reformat the commit message. 17 --commit Creates a new commit containing only the whitespace changes 18 --msg-only Reformat the commit message only, ignore the patch itself. 47 commit() { function 50 log "HEAD doesn't have a Change-Id, unable to generate a new commit" 58 # Commit, preserving authorship from the parent commit. 59 git commit [all...] |
/external/selinux/libselinux/utils/ |
H A D | togglesebool.c | 26 int rc, i, commit = 0; local 46 commit++; 56 commit++; 75 if (commit > 0) {
|
/external/iproute2/include/libiptc/ |
H A D | xtcshared.h | 9 int (*commit)(struct xtc_handle *); member in struct:xtc_ops
|
/external/iptables/include/libiptc/ |
H A D | xtcshared.h | 9 int (*commit)(struct xtc_handle *); member in struct:xtc_ops
|
/external/jemalloc/include/jemalloc/ |
H A D | jemalloc_typedefs.h | 4 * bool *commit, unsigned arena_ind); 52 chunk_commit_t *commit; member in struct:__anon7728
|
/external/jemalloc/src/ |
H A D | chunk_mmap.c | 7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) argument 29 if (!*commit) 30 *commit = pages_decommit(ret, size); 36 bool *commit) 64 return (chunk_alloc_mmap_slow(size, alignment, zero, commit)); 69 if (!*commit) 70 *commit = pages_decommit(ret, size); 35 chunk_alloc_mmap(void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit) argument
|
H A D | pages.c | 119 pages_commit_impl(void *addr, size_t size, bool commit) argument 124 * The following decommit/commit implementation is functional, but 130 int prot = commit ? (PROT_READ | PROT_WRITE) : PROT_NONE;
|
H A D | chunk_dss.c | 70 bool *zero, bool *commit) 146 if (!*commit) 147 *commit = pages_decommit(ret, size); 69 chunk_alloc_dss(arena_t *arena, void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit) argument
|
/external/testng/src/test/java/test/justin/ |
H A D | BaseTestCase.java | 24 protected void commit() { method in class:BaseTestCase 28 commit();
|
/external/v8/tools/ |
H A D | find-commit-for-patch.py | 13 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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/ |
H A D | document.py | 66 Once the set of documents is ready to be index, use :func:`commit` to send the 75 The SDF is not cleared after a :func:`commit`. If you wish to continue 94 The document will not actually be added until :func:`commit` is called 120 The document will not actually be scheduled for removal until :func:`commit` is called 148 This should be used after :func:`commit` if the connection will be reused 169 def commit(self): member in class:DocumentServiceConnection 205 """Wrapper for response to Cloudsearch document batch commit. 255 """Raise exception if number of ops in response doesn't match commit 258 :param type_: Type of commit operation: 'add' or 'delete'
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/ |
H A D | record.py | 163 def commit(self): member in class:ResourceRecordSets
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/scripts/ |
H A D | git-release-notes.py | 9 REVLIST = 'git rev-list develop --abbrev-commit --format="parents %p%n%B%n~~~" --max-count=200 develop' 29 commit = lines[0].split(' ', 1)[1] variable 33 # print(commit, parents) 36 print('Found release commit, stopping:') 41 commit_list.append([commit, message]) 50 for commit, message in commit_list: 57 append.append(':sha:`{commit}`'.format(commit=commit))
|
/external/llvm/lib/Support/ |
H A D | FileOutputBuffer.cpp | 104 std::error_code FileOutputBuffer::commit() { function in class:llvm::FileOutputBuffer
|
/external/selinux/libsemanage/src/ |
H A D | policy.h | 33 /* Returns the current policy serial/commit number 47 int (*commit) (struct semanage_handle *); member in struct:semanage_policy_table
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
H A D | document.py | 73 Once the set of documents is ready to be index, use :func:`commit` to send 82 The SDF is not cleared after a :func:`commit`. If you wish to continue 121 The document will not actually be added until :func:`commit` is called 138 :func:`commit` is called 161 This should be used after :func:`commit` if the connection will be 202 def commit(self): member in class:DocumentServiceConnection 234 """Wrapper for response to Cloudsearch document batch commit. 285 """Raise exception if number of ops in response doesn't match commit 288 :param type_: Type of commit operation: 'add' or 'delete' 303 # There will always be a commit mismatc [all...] |
/external/autotest/client/common_lib/ |
H A D | revision_control.py | 38 """Exception raised for git commit errors.""" 203 def commit(self, msg='default'): member in class:GitRepo 205 Commit changes to repo with the supplied commit msg. 207 @param msg: A message that goes with the commit. 209 rv = self.gitcmd('commit -a -m %s' % msg) 212 raise revision_control.GitCommitError('Unable to commit', rv) 327 Get the top commit hash of the current local git branch. 329 @return: Top commit hash of local git branch 338 Get the top commit hash of the current remote git branch. 340 @return: Top commit has [all...] |
H A D | revision_control_unittest.py | 36 # 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/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_winsys.h | 113 (*commit)(struct svga_winsys_context *swc); member in struct:svga_winsys_context
|
/external/autotest/tko/ |
H A D | db.py | 171 """Private method for function commit to call for retry. 173 return self.con.commit() 176 def commit(self): member in class:db_sql 292 def _exec_sql_with_commit(self, sql, values, commit): 297 self.con.commit() 302 if commit: 303 self.con.commit() 306 def insert(self, table, data, commit=None): 321 self._exec_sql_with_commit(cmd, values, commit) 324 def delete(self, table, where, commit [all...] |
/external/clang/lib/Edit/ |
H A D | EditedSource.cpp | 76 // 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/guice/extensions/persist/lib/ |
H A D | jta.jar | ... Transaction extends java.lang.Object {
public abstract void commit () throws javax.transaction.RollbackException javax.transaction. ... |
/external/jemalloc/test/integration/ |
H A D | chunk.c | 29 bool *commit, unsigned arena_ind) 33 "*commit=%s, arena_ind=%u)\n", __func__, new_addr, size, alignment, 34 *zero ? "true" : "false", *commit ? "true" : "false", arena_ind); 36 return (old_hooks.alloc(new_addr, size, alignment, zero, commit, 61 err = old_hooks.commit(chunk, size, offset, length, arena_ind); 144 assert_ptr_ne(old_hooks.commit, chunk_commit, 145 "Unexpected commit error"); 188 /* Test decommit/commit and observe split/merge. */ 203 assert_b_eq(did_decommit, did_commit, "Expected decommit/commit match"); 240 assert_b_eq(did_decommit, did_commit, "Expected decommit/commit matc 28 chunk_alloc(void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit, unsigned arena_ind) argument [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/ |
H A D | TestSharedPreferences.java | 150 public boolean commit() { method in class:TestSharedPreferences.TestSharedPreferencesEditor 172 commit();
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
H A D | TestHelper_Connection1.java | 49 public void commit() throws SQLException { method in class:TestHelper_Connection1
|